guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 57ee39a541dd1a75d40ce467cb48aea280c10f39
Author: Nicolas Graves <[email protected]>
AuthorDate: Sat Oct 25 12:56:10 2025 +0200
gnu: python-inflection: Update to 0.5.1.
* gnu/packages/python-xyz.scm (python-inflection): Update to 0.5.1.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools.
Change-Id: Ie0f433c56dcbecb825e71672fce88cd0c8d3ec0f
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 20 +++++++++++---------
1 file changed, 11 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e207368494..72696eaed2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -21712,16 +21712,18 @@ ordinals, indefinite articles; it also can convert
numbers to words.")
(define-public python-inflection
(package
(name "python-inflection")
- (version "0.3.1")
+ (version "0.5.1")
(source
- (origin (method url-fetch)
- (uri (pypi-uri "inflection" version))
- (sha256
- (base32
- "1jhnxgnw8y3mbzjssixh6qkc7a3afc4fygajhqrqalnilyvpzshq"))))
- (build-system python-build-system)
- (native-inputs
- (list python-pytest))
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jpvanhal/inflection")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0mvs6wgpi963k7mqrwzdkh32m29zcm772q0fy7pwszlcsh3l50kg"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-pytest python-setuptools))
(home-page "https://github.com/jpvanhal/inflection")
(synopsis "Python string transformation library")
(description