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";
2019-02-14 07:37:18 +00:00
version = "2.1.0";
2018-09-03 00:15:59 +00:00
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:18 +00:00
sha256 = "4ded1b2a6fcf0fc0397419c7727f131a93b67b80d899f2973be7758628e12b73";
2018-09-03 00:15:59 +00:00
};
buildInputs = [ setuptools_scm ];
checkInputs = [ nose ];
propagatedBuildInputs = [ six ];
}