python3Packages.inflect: 5.0.2 -> 5.2.0 (#114557)
Co-authored-by: Robert Schütz <dev@schuetz-co.de>
This commit is contained in:
parent
7ac6fbfe5a
commit
76e6896331
@ -1,16 +1,32 @@
|
|||||||
{ buildPythonPackage, fetchPypi, isPy27, setuptools_scm, nose, six, importlib-metadata, toml }:
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, isPy27
|
||||||
|
, setuptools_scm
|
||||||
|
, toml
|
||||||
|
, pytestCheckHook
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "inflect";
|
pname = "inflect";
|
||||||
version = "5.0.2";
|
version = "5.2.0";
|
||||||
disabled = isPy27;
|
disabled = isPy27;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "d284c905414fe37c050734c8600fe170adfb98ba40f72fc66fed393f5b8d5ea0";
|
sha256 = "30e9d9d372e693739beaae1345dc53c48871ca70c5c7060edd3e7e77802bf945";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ setuptools_scm toml ];
|
nativeBuildInputs = [ setuptools_scm toml ];
|
||||||
propagatedBuildInputs = [ six importlib-metadata ];
|
|
||||||
checkInputs = [ nose ];
|
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;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user