python.pkgs.inflect: 0.2.5 -> 1.0.0

This commit is contained in:
Jörg Thalheim 2018-09-03 01:15:59 +01:00
parent 86bd041196
commit 8e15622cf3
2 changed files with 16 additions and 9 deletions

View File

@ -0,0 +1,15 @@
{ buildPythonPackage, fetchPypi, setuptools_scm, nose, six }:
buildPythonPackage rec {
pname = "inflect";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "0ll34l5b2wsbcw9i2hvkhmq6szxrp7fzc2hjmpz1cvny81bhg3kx";
};
buildInputs = [ setuptools_scm ];
checkInputs = [ nose ];
propagatedBuildInputs = [ six ];
}

View File

@ -17067,15 +17067,7 @@ EOF
propagatedBuildInputs = with self; [ inflect more-itertools six ];
};
inflect = buildPythonPackage rec {
name = "inflect-${version}";
version = "0.2.5";
src = pkgs.fetchurl {
url = "mirror://pypi/i/inflect/${name}.tar.gz";
sha256 = "065866j9msrivbr74yrag53ch0lav7xz18qvjkiblkhinbfch510";
};
};
inflect = callPackage ../development/python-modules/inflect { };
more-itertools = callPackage ../development/python-modules/more-itertools { };