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

16 lines
364 B
Nix
Raw Normal View History

2018-09-03 01:15:59 +01:00
{ buildPythonPackage, fetchPypi, setuptools_scm, nose, six }:
buildPythonPackage rec {
pname = "inflect";
2018-11-20 10:58:36 +00:00
version = "1.0.2";
2018-09-03 01:15:59 +01:00
src = fetchPypi {
inherit pname version;
2018-11-20 10:58:36 +00:00
sha256 = "98cf5d82952ed8bf1cf9236c6058e9a21bc66172ecb907969d907741f91388b5";
2018-09-03 01:15:59 +01:00
};
buildInputs = [ setuptools_scm ];
checkInputs = [ nose ];
propagatedBuildInputs = [ six ];
}