From 57ee39a541dd1a75d40ce467cb48aea280c10f39 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Sat, 25 Oct 2025 12:56:10 +0200 Subject: [PATCH] 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 --- 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 e20736849498fb1f906d470109f40a613a96e70c..72696eaed265e6153a0c8e6e34151418e72445d1 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