python.pkgs.inflect: 0.2.5 -> 1.0.0
This commit is contained in:
parent
86bd041196
commit
8e15622cf3
15
pkgs/development/python-modules/inflect/default.nix
Normal file
15
pkgs/development/python-modules/inflect/default.nix
Normal 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 ];
|
||||||
|
}
|
@ -17067,15 +17067,7 @@ EOF
|
|||||||
propagatedBuildInputs = with self; [ inflect more-itertools six ];
|
propagatedBuildInputs = with self; [ inflect more-itertools six ];
|
||||||
};
|
};
|
||||||
|
|
||||||
inflect = buildPythonPackage rec {
|
inflect = callPackage ../development/python-modules/inflect { };
|
||||||
name = "inflect-${version}";
|
|
||||||
version = "0.2.5";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/i/inflect/${name}.tar.gz";
|
|
||||||
sha256 = "065866j9msrivbr74yrag53ch0lav7xz18qvjkiblkhinbfch510";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
more-itertools = callPackage ../development/python-modules/more-itertools { };
|
more-itertools = callPackage ../development/python-modules/more-itertools { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user