python.pkgs.jaraco_text: 1.7 -> 1.10.1

This commit is contained in:
Jörg Thalheim 2018-09-03 01:20:00 +01:00
parent c4bf056c08
commit 7cd2bf48f7
2 changed files with 15 additions and 15 deletions

View file

@ -0,0 +1,14 @@
{ buildPythonPackage, fetchPypi, setuptools_scm
, jaraco_functools, jaraco_collections }:
buildPythonPackage rec {
pname = "jaraco.text";
version = "1.10.1";
src = fetchPypi {
inherit pname version;
sha256 = "07ccc0zc28sb1kyfyviw3n8f581qynrshqvqg1xsp4gkf1m2ibhh";
};
doCheck = false;
buildInputs =[ setuptools_scm ];
propagatedBuildInputs = [ jaraco_functools jaraco_collections ];
}

View file

@ -17014,21 +17014,7 @@ EOF
propagatedBuildInputs = with self; [ tempora six ];
};
jaraco_text = buildPythonPackage rec {
name = "jaraco.text-${version}";
version = "1.7";
src = pkgs.fetchurl {
url = "mirror://pypi/j/jaraco.text/${name}.tar.gz";
sha256 = "07ccc0zc28sb1kyfyviw3n8f581qynrshqvqg1xsp4gkf1m2ibhh";
};
doCheck = false;
buildInputs = with self; [ setuptools_scm ];
propagatedBuildInputs = with self; [ jaraco_functools jaraco_collections ];
};
jaraco_text = callPackage ../development/python-modules/jaraco_text { };
jaraco_collections = callPackage ../development/python-modules/jaraco_collections { };