summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-17 15:45:01 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:46 +0100
commit73a24ad57c00c3571bb4f5043b0f38ef2de22bd8 (patch)
treebe277bf075c22cfa20b48672fcb20fac684bf0b9 /gnu/packages/python-xyz.scm
parentf987f2f4d97bb003a0c0d29021830026068c2c8c (diff)
gnu: python-jaraco-collections: Update to 5.2.1.
* gnu/packages/python-xyz.scm (python-jaraco-collections): Update to 5.2.1. [native-inputs]: Remove python-pytest-black, python-pytest-checkdocs, python-pytest-cov, python-pytest-enabler, and python-pytest-mypy; add python-setuptools-scm. Change-Id: Ia14a332e876e007961000e053768ed4cce3771d1
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm24
1 files changed, 10 insertions, 14 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0026264338..fdd1b3fa64 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -13956,29 +13956,25 @@ class constructs.")
(define-public python-jaraco-collections
(package
(name "python-jaraco-collections")
- (version "5.0.0")
+ (version "5.2.1")
(source
(origin
(method url-fetch)
- (uri (pypi-uri "jaraco.collections" version))
+ (uri (pypi-uri "jaraco_collections" version))
(sha256
- (base32 "0s7y3jr7c173k38pck1b17kxnvx2fl0qh9m9gdf64pr9kz8fi00n"))))
+ (base32 "1v8qza70spm4d822bm7wq3j2cyd33nqg2i87n99spw6np9q1kf6s"))))
(build-system pyproject-build-system)
;; Do not test pyproject.toml with python-pytest-checkdocs as it tries to
;; download dependencies.
(arguments
'(#:test-flags '("-k" "not project")))
- (propagated-inputs (list python-jaraco-text))
- ;; TODO: Add python-pytest-ruff to native-inputs once it has been
- ;; packaged.
- (native-inputs (list python-pytest
- python-pytest-black
- python-pytest-checkdocs
- python-pytest-cov
- python-pytest-enabler
- python-pytest-mypy
- python-setuptools
- python-wheel))
+ (native-inputs
+ (list python-pytest
+ python-setuptools
+ python-setuptools-scm
+ python-wheel))
+ (propagated-inputs
+ (list python-jaraco-text))
(home-page "https://github.com/jaraco/jaraco.collections")
(synopsis "Provides various collection objects")
(description