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

33 lines
727 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, setuptools_scm
, toml
, pytestCheckHook
}:
2018-09-03 01:15:59 +01:00
buildPythonPackage rec {
pname = "inflect";
version = "5.2.0";
disabled = isPy27;
2018-09-03 01:15:59 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "30e9d9d372e693739beaae1345dc53c48871ca70c5c7060edd3e7e77802bf945";
2018-09-03 01:15:59 +01:00
};
nativeBuildInputs = [ setuptools_scm toml ];
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "inflect" ];
meta = with lib; {
description = "Correctly generate plurals, singular nouns, ordinals, indefinite articles";
homepage = "https://github.com/jaraco/inflect";
changelog = "https://github.com/jaraco/inflect/blob/v${version}/CHANGES.rst";
license = licenses.mit;
};
2018-09-03 01:15:59 +01:00
}