mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
Merge pull request #6373 from mvcisback/moreItertools
Added more-itertools-2.2 python package
This commit is contained in:
commit
7dda2b30dd
@ -13107,7 +13107,22 @@ let
|
||||
};
|
||||
};
|
||||
|
||||
moreItertools = buildPythonPackage rec {
|
||||
name = "more-itertools-2.2";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://github.com/erikrose/more-itertools/archive/2.2.tar.gz";
|
||||
ha256 = "4606417182e0a1289e23fb7f964a64ca9fdaafb7c1999034dc4fa0cc5850c478";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ nose ];
|
||||
|
||||
meta = {
|
||||
homepage = "https://more-itertools.readthedocs.org";
|
||||
description = "Expansion of the itertools module.";
|
||||
license = licenses.mit;
|
||||
};
|
||||
};
|
||||
|
||||
# python2.7 specific packages
|
||||
} // optionalAttrs isPy27 (
|
||||
|
Loading…
Reference in New Issue
Block a user