summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-11-08 15:00:01 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-11-11 16:02:05 +0000
commit24fdf6fff9bb073a60c8d1486e20993d83a886bb (patch)
tree729baf2b0947f2b5d5df4f18461ed8764b35ef32 /gnu/packages
parentae2e089b5a23c1a721e43819e6feb9c3b664907b (diff)
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 <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-xyz.scm14
1 files changed, 9 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 4f33bdf5480..5f558c1e430 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.")
28942(define-public python-pyphen 28942(define-public python-pyphen
28943 (package 28943 (package
28944 (name "python-pyphen") 28944 (name "python-pyphen")
28945 (version "0.10.0") 28945 (version "0.17.2")
28946 (source 28946 (source
28947 (origin 28947 (origin
28948 (method url-fetch) 28948 (method git-fetch)
28949 (uri (pypi-uri "Pyphen" version)) 28949 (uri (git-reference
28950 (url "https://github.com/Kozea/Pyphen")
28951 (commit version)))
28952 (file-name (git-file-name name version))
28950 (sha256 28953 (sha256
28951 (base32 "0a1iwrgs4hzwzz60q4i1813kbzimhm0i4q8grh8vqkxhnkgj36vi")))) 28954 (base32 "1fqxc50vqj884b7f6d8qfvnvw34477lhsdznvpxsljjg9j2v4ipv"))))
28952 (build-system python-build-system) 28955 (build-system pyproject-build-system)
28956 (native-inputs (list python-flit-core python-pytest))
28953 ;; TODO: Use the Guix system hyphenation packages hyphen-* rather than the 28957 ;; TODO: Use the Guix system hyphenation packages hyphen-* rather than the
28954 ;; embedded set provided by upstream - like Debian does. 28958 ;; embedded set provided by upstream - like Debian does.
28955 (home-page "https://github.com/Kozea/Pyphen") 28959 (home-page "https://github.com/Kozea/Pyphen")