blob: 50d7deb1660bb67644c5c4cfbe4f90df21a4ff49 (
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
48
49
50
51
52
53
54
55
56
57
58
59
|
{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
# build-system
setuptools,
setuptools-scm,
# dependencies
more-itertools,
typeguard,
# checks
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "inflect";
version = "7.3.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "jaraco";
repo = "inflect";
rev = "refs/tags/v${version}";
hash = "sha256-J0XgSKPzZIt/7WnMGARXpyYzagBGiqRiuNmNnGKDBrs=";
};
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/v${version}/CHANGES.rst";
license = lib.licenses.mit;
maintainers = lib.teams.tts.members;
};
}
|