python.pkgs.jaraco.itertools: 1.7.1 -> 2.4
This commit is contained in:
14
pkgs/development/python-modules/jaraco_itertools/default.nix
Normal file
14
pkgs/development/python-modules/jaraco_itertools/default.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
{ buildPythonPackage, fetchPypi, setuptools_scm
|
||||
, inflect, more-itertools, six }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "jaraco.itertools";
|
||||
version = "2.4";
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "18cwjbnnnbwld70s3r24sys3blcss84d9ha9hhxsg2d35f9vywd5";
|
||||
};
|
||||
doCheck = false;
|
||||
buildInputs = [ setuptools_scm ];
|
||||
propagatedBuildInputs = [ inflect more-itertools six ];
|
||||
}
|
||||
Reference in New Issue
Block a user