summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-09-20 18:22:00 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:37 +0100
commit5ffcd05cb2eeabd0a2bb8806c3ba1e4a7b0a7851 (patch)
treea4d14a6d0e7eb5f2581fc22d4a8785b68c4034cd /gnu/packages/python-xyz.scm
parentdf82493b09556297da5aaaa1c7f7ca621284352d (diff)
gnu: python-setuptools-gettext: Run tests and fix them.
* gnu/packages/python-xyz.scm (python-setuptools-gettext) [source]: Switch to git-fetch. [native-inputs]: Add python-pytest, remove python-wheel. Change-Id: I969a8d6f6e41df7e1f6729a9b4e9a9d5ec782303 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm13
1 files changed, 7 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 418403b3ba..eb14fdbfaf 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -27999,14 +27999,15 @@ Rust Python extensions implemented with @code{PyO3} or @code{rust-cpython}.")
(version "0.1.14")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "setuptools_gettext" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/breezy-team/setuptools-gettext")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "0b0d74cwa9lk32cajzpxxg9nwm5hch17xc6bzg6i4iqsygprkw23"))))
+ (base32 "1m6a3qjwvqbvlzwqap7050rqsxb7nwibl38iklnqz8363iclm76k"))))
(build-system pyproject-build-system)
- (native-inputs (list python-tomli
- python-setuptools
- python-wheel))
+ (native-inputs (list python-pytest python-tomli python-setuptools))
(home-page "https://github.com/breezy-team/setuptools-gettext")
(synopsis "Setuptools plugin for gettext")
(description "This package provides a plugin for Setuptools for gettext.")