Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7e0ce6f71fb6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 91f239e4b0eb
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 30, 2018

  1. bugwarrior: 1.4.0 -> 1.5.1

    reinhardt authored and nbp committed Mar 30, 2018
    Copy the full SHA
    91f239e View commit details
Showing with 12 additions and 3 deletions.
  1. +12 −3 pkgs/top-level/python-packages.nix
15 changes: 12 additions & 3 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -1850,17 +1850,17 @@ in {

bugwarrior = buildPythonPackage rec {
name = "bugwarrior-${version}";
version = "1.4.0";
version = "1.5.1";

src = pkgs.fetchurl {
url = "mirror://pypi/b/bugwarrior/${name}.tar.gz";
sha256 = "1jkz5vzbwspi1jcb3qsgcl619yip77khb696pc3ryk0pdhjhgs5w";
sha256 = "0kxknjbw5kchd88i577vlzibg8j60r7zzdhbnragj9wg5s3w60xb";
};

buildInputs = with self; [ mock unittest2 nose /* jira megaplan */ ];
propagatedBuildInputs = with self; [
twiggy requests offtrac bugzilla taskw dateutil pytz keyring six
jinja2 pycurl dogpile_cache lockfile click pyxdg
jinja2 pycurl dogpile_cache lockfile click pyxdg future15
];

# for the moment jira>=0.22 and megaplan>=1.4 are missing for running the test suite.
@@ -7681,6 +7681,15 @@ in {
};

future = callPackage ../development/python-modules/future { };
future15 = self.future.overridePythonAttrs (old: rec {
name = "future-${version}";
version = "0.15.2";
src = fetchPypi {
pname = "future";
version = "0.15.2";
sha256 = "15wvcfzssc68xqnqi1dq4fhd0848hwi9jn42hxyvlqna40zijfrx";
};
});

futures = buildPythonPackage rec {
name = "futures-${version}";