summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-08-09 16:14:48 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:56 +0100
commitd1775507d1cfe55e7b319bee7f002a9aca7b0034 (patch)
treedd840db9acceb10685f91babbd83075c349a3f8d /gnu/packages/python-xyz.scm
parenteb308effb092f3e8e972698a010627e18faa2da2 (diff)
gnu: python-cycler: Update to 0.12.1.
* gnu/packages/python-xyz.scm (python-cycler): Update to 0.12.1. [build-system]: Use pyporject. [propagated-inputs]: Remove python-six. [native-inputs]: Add python-pytest and python-setuptools. Change-Id: I220e869568761cdcbf8ba0219207c42de0271ab0
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm28
1 files changed, 14 insertions, 14 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2877ad094e..64edddcd2b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -11217,20 +11217,20 @@ transcendental functions).")
(define-public python-cycler
(package
(name "python-cycler")
- (version "0.10.0")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "cycler" version))
- (sha256
- (base32
- "1n69n23fak1gjxlrbhqisi2b9pv3ckrfj98llx3p53953082syyd"))))
- (build-system python-build-system)
- (arguments
- ;; XXX: The current version requires 'coveralls' which we don't have.
- ;; Enable this for the next release which uses 'python-pytest'.
- '(#:tests? #f))
- (propagated-inputs
- (list python-six))
+ (version "0.12.1")
+ (source
+ (origin
+ (method git-fetch) ;no tests in PyPI archive
+ (uri (git-reference
+ (url "https://github.com/matplotlib/cycler")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "061b8vxd2kp016pnwik9jg6zqng8khzmg0p298wrz65z50yh1gg4"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-pytest
+ python-setuptools))
(home-page "https://matplotlib.org/cycler/")
(synopsis "Composable keyword argument iterator")
(description