guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 24fdf6fff9bb073a60c8d1486e20993d83a886bb
Author: Nicolas Graves <[email protected]>
AuthorDate: Sat Nov 8 15:00:01 2025 +0100
gnu: python-pyphen: Update to 0.17.2.
* gnu/packages/python-xyz.scm (python-pyphen): Update to 0.17.2.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-flit-core, python-pytest.
Change-Id: I5022faa0e4f2391f08b43bd002a0643369d391ea
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 14 +++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 4f33bdf548..5f558c1e43 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -28942,14 +28942,18 @@ qvarious formats: PDF, PostScript, PNG and even SVG.")
(define-public python-pyphen
(package
(name "python-pyphen")
- (version "0.10.0")
+ (version "0.17.2")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "Pyphen" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Kozea/Pyphen")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32 "0a1iwrgs4hzwzz60q4i1813kbzimhm0i4q8grh8vqkxhnkgj36vi"))))
- (build-system python-build-system)
+ (base32 "1fqxc50vqj884b7f6d8qfvnvw34477lhsdznvpxsljjg9j2v4ipv"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-flit-core python-pytest))
;; TODO: Use the Guix system hyphenation packages hyphen-* rather than the
;; embedded set provided by upstream - like Debian does.
(home-page "https://github.com/Kozea/Pyphen")