diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-01-19 01:20:52 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-07 12:28:31 +0100 |
| commit | 37e670fcca9152fff3643bb9dd8ffec459073f72 (patch) | |
| tree | c6c2026c919247d244d60740554abf5f14642e51 /gnu | |
| parent | 330909db92ce52d74ecd3f78f1e89ad9fa0d8166 (diff) | |
gnu: python-icecream: Update to 2.1.9.
* gnu/packages/python-xyz.scm (python-icecream): Update to 2.1.9.
[source]: Switch to git-fetch.
[arguments]: Drop them.
[native-inputs]: Remove python-wheel.
Change-Id: I6266e3a8a23f70c1d11305292d2bd8ef33392150
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 11da12f259..d929fb9de4 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -35754,27 +35754,21 @@ markdown-compliant strings.") (define-public python-icecream (package (name "python-icecream") - (version "2.1.3") + (version "2.1.9") (source (origin - (method url-fetch) - (uri (pypi-uri "icecream" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/gruns/icecream") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 "1pj9kf7lwm799wppvngg3sndi0qf13iq33yhl59n3hsf6z1sg90a")))) + (base32 "1scxnjnnapqwzvhii07ax72yp6cj9ksn76bpnw04hg2i92snc3g2")))) (build-system pyproject-build-system) - (arguments - (list - #:test-flags - '(list "-k" - ;; These tests are failing due to a bug: - ;; https://github.com/gruns/icecream/issues/144 - (string-append "not testEnableDisable" - " and not testSingledispatchArgumentToString")))) (native-inputs (list python-hypothesis python-pytest - python-setuptools - python-wheel)) + python-setuptools)) (propagated-inputs (list python-asttokens python-colorama |
