summaryrefslogtreecommitdiff
path: root/gnu/packages/python-build.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-31 06:55:01 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:23 +0100
commitc75b9a5c9192b420ee9166c8f674ce8fb4d8262e (patch)
treeb83848f7d41cca8933db7f9ec3f6a34aa8266809 /gnu/packages/python-build.scm
parenta0f4fdda2992553215c7de7f333e63c564c71f43 (diff)
gnu: python-inflect: Move to (gnu packages python-build).
* gnu/packages/python-xyz.scm (python-inflect): Move from here… * gnu/packages/python-build.scm (python-inflect): …to here. [native-inputs]: Replace python-pytest by python-pytest-bootstrap, python-setuptools by python-setuptools-bootstrap, python-setuptools-scm by python-setuptools-scm-boostrap. Change-Id: Id8782ae885b16d2a2870cd5d05b93e93ca9dbc40 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-build.scm')
-rw-r--r--gnu/packages/python-build.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index fd0333affd6..e1797d9356f 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -1356,6 +1356,33 @@ version control system (like Git) to determine project versions.")
1356 (list python-hatchling-bootstrap 1356 (list python-hatchling-bootstrap
1357 python-setuptools-scm-bootstrap)))) 1357 python-setuptools-scm-bootstrap))))
1358 1358
1359(define-public python-inflect
1360 (package
1361 (name "python-inflect")
1362 (version "7.5.0")
1363 (source (origin
1364 (method url-fetch)
1365 (uri (pypi-uri "inflect" version))
1366 (sha256
1367 (base32
1368 "07spmlkmskwhxc0j5j4ms3w0f6pyv3h8iqwcbahdabklqc0riwgs"))))
1369 (build-system pyproject-build-system)
1370 (native-inputs
1371 (list python-pygments
1372 python-pytest-bootstrap
1373 python-setuptools-bootstrap
1374 python-setuptools-scm-bootstrap))
1375 (propagated-inputs
1376 (list python-more-itertools
1377 python-typeguard
1378 python-typing-extensions))
1379 (home-page "https://github.com/jaraco/inflect")
1380 (synopsis "Correctly generate plurals, singular nouns, ordinals, indefinite articles")
1381 (description
1382 "This Python module lets you correctly generate plurals, singular nouns,
1383ordinals, indefinite articles; it also can convert numbers to words.")
1384 (license license:expat)))
1385
1359(define-public python-iniconfig 1386(define-public python-iniconfig
1360 (package 1387 (package
1361 (name "python-iniconfig") 1388 (name "python-iniconfig")