depot/third_party/nixpkgs/pkgs/development/python-modules/inflect/default.nix
Default email 75ca762b89 Project import generated by Copybara.
GitOrigin-RevId: 29b0d4d0b600f8f5dd0b86e3362a33d4181938f9
2021-03-09 11:18:52 +08:00

32 lines
727 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, setuptools_scm
, toml
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "inflect";
version = "5.2.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "30e9d9d372e693739beaae1345dc53c48871ca70c5c7060edd3e7e77802bf945";
};
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;
};
}