nixpkgs/pkgs/development/python-modules/inflect/default.nix

16 lines
364 B
Nix
Raw Normal View History

2018-09-03 00:15:59 +00:00
{ buildPythonPackage, fetchPypi, setuptools_scm, nose, six }:
buildPythonPackage rec {
pname = "inflect";
2018-10-06 10:56:17 +00:00
version = "1.0.1";
2018-09-03 00:15:59 +00:00
src = fetchPypi {
inherit pname version;
2018-10-06 10:56:17 +00:00
sha256 = "ec42f5d5d2baa54ba6e3fa23698554c09362dd478cc66b3c28c5d0b76d7d0581";
2018-09-03 00:15:59 +00:00
};
buildInputs = [ setuptools_scm ];
checkInputs = [ nose ];
propagatedBuildInputs = [ six ];
}