blob: 35760249f742088ce77125c708e08b0007ff7550 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, more-itertools
, setuptools-scm
, pydantic
, pytestCheckHook
, typeguard
}:
buildPythonPackage rec {
pname = "inflect";
version = "7.2.0";
disabled = isPy27;
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-Mv6s+s/K4vIub8zeoQ8N3yamOPrENNDd2q+8oANPN4Q=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [
more-itertools
pydantic
typeguard
];
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
# https://errors.pydantic.dev/2.5/v/string_too_short
"inflect.engine.compare"
];
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;
maintainers = teams.tts.members;
};
}
|