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

17 lines
449 B
Nix
Raw Normal View History

{ buildPythonPackage, fetchPypi, isPy27, setuptools_scm, nose, six, importlib-metadata, toml }:
2018-09-03 01:15:59 +01:00
buildPythonPackage rec {
pname = "inflect";
2020-06-06 07:47:13 +01:00
version = "4.1.0";
disabled = isPy27;
2018-09-03 01:15:59 +01:00
src = fetchPypi {
inherit pname version;
2020-06-06 07:47:13 +01:00
sha256 = "def6f3791be9181f0c01e0bf5949304007ec6e04c6674fbef7cc49c657b8a9a5";
2018-09-03 01:15:59 +01:00
};
nativeBuildInputs = [ setuptools_scm toml ];
propagatedBuildInputs = [ six importlib-metadata ];
2018-09-03 01:15:59 +01:00
checkInputs = [ nose ];
}