blob: 3d98b69979b874593adf9b7e37d265552b5f2401 (
plain)
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
48
49
50
51
52
53
54
55
56
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
setuptools-scm,
# dependencies
more-itertools,
typeguard,
# checks
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "inflect";
version = "7.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "jaraco";
repo = "inflect";
tag = "v${version}";
hash = "sha256-JQn0JySzXFnqz/dPc7BGLzd23Bh72S+/aI40gxAgx8k=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
more-itertools
typeguard
];
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
# https://errors.pydantic.dev/2.5/v/string_too_short
"inflect.engine.compare"
];
pythonImportsCheck = [ "inflect" ];
meta = {
description = "Correctly generate plurals, singular nouns, ordinals, indefinite articles";
homepage = "https://github.com/jaraco/inflect";
changelog = "https://github.com/jaraco/inflect/blob/${src.tag}/CHANGES.rst";
license = lib.licenses.mit;
teams = [ lib.teams.tts ];
};
}
|