summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2025-09-21 22:15:14 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:56 +0100
commitefe87a4dc3c13017f8dd5986630ca66df9977834 (patch)
tree63b9f57cd1ca513324bdba6b166fac95e64473c5 /gnu/packages/python-xyz.scm
parentf63ac0979d41fd3e1a65ba3d9a7f4f7edb8d1d4e (diff)
gnu: python-colormath2: Fix tests.
* gnu/packages/python-xyz.scm (python-colormath2): Fix tests. [source]: Switch to git-fetch. [native-inputs]: Remove python-pytest; add python-nose2. Change-Id: I969d0271cc9d7cdb9a662e0a007f2c895a331ace Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm11
1 files changed, 7 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index df60dac36ec..a164e8134c8 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -11041,13 +11041,16 @@ objects.")
(version "3.0.3")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "colormath2" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/bkmgit/python-colormath2")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32 "1yigkhvjgbl9nrlijn4iwcs6k7i5y58drix1331cd1hb9wzn35z7"))))
+ (base32 "0xxhmmx1mzjggapjmpz8v166lj86xrkq7kak83akcirnq0pz9ihv"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-networkx python-numpy))
- (native-inputs (list python-pytest python-setuptools))
+ (native-inputs (list python-nose2 python-setuptools))
(home-page "https://github.com/bkmgit/python-colormath2")
(synopsis "Color math and conversion library")
(description