forked from mirrors/nixpkgs
pythonPackages.inflect: add importlib-metadata dependency
This commit is contained in:
parent
e05e32ae04
commit
919fa16940
|
@ -1,4 +1,4 @@
|
||||||
{ buildPythonPackage, fetchPypi, setuptools_scm, nose, six }:
|
{ buildPythonPackage, fetchPypi, setuptools_scm, nose, six, importlib-metadata }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "inflect";
|
pname = "inflect";
|
||||||
|
@ -9,7 +9,7 @@ buildPythonPackage rec {
|
||||||
sha256 = "ee7c9b7c3376d06828b205460afb3c447b5d25dd653171db249a238f3fc2c18a";
|
sha256 = "ee7c9b7c3376d06828b205460afb3c447b5d25dd653171db249a238f3fc2c18a";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ setuptools_scm ];
|
nativeBuildInputs = [ setuptools_scm ];
|
||||||
|
propagatedBuildInputs = [ six importlib-metadata ];
|
||||||
checkInputs = [ nose ];
|
checkInputs = [ nose ];
|
||||||
propagatedBuildInputs = [ six ];
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue