python.pkgs.jaraco.itertools: 1.7.1 -> 2.4

This commit is contained in:
Jörg Thalheim
2018-09-03 01:18:24 +01:00
parent b3e9520a0c
commit 6b1b6c84bf
2 changed files with 15 additions and 15 deletions

View 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 ];
}