summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-12-31 12:47:02 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-31 12:47:02 +0000
commit8240f35e15ab46f36d76b4ea5518113c67e2c607 (patch)
treeb68f43204db05a6bbd7508f02a9b3da7ef7bbfd2 /gnu
parentae53179c9de1442966c07a31f3a3276e71d757fd (diff)
gnu: python-parse-type: Update to 0.6.6.
* gnu/packages/python-xyz.scm (python-parse-type): Update to 0.6.6. [native-inputs]: Remove python-wheel; add python-setuptools-scm. Change-Id: Ia31b266f4ce6ceb677ae3787d3484e19fdc80de2
Diffstat (limited to 'gnu')
-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 97b65a0b422..8fbed814084 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -7095,21 +7095,24 @@ matplotlib plots or supply colors for a web application.")
(define-public python-parse-type
(package
(name "python-parse-type")
- (version "0.6.0")
+ (version "0.6.6")
(source
(origin
(method url-fetch)
(uri (pypi-uri "parse_type" version))
(sha256
(base32
- "07smqnzc9km7sbvxfyx4gdm9njrx58x8grdw6gs4gva81rk3rd10"))))
+ "1cmzjw8gryc08lp9znaxrngl6csdifd3610fd46pffa82223ffji"))))
(build-system pyproject-build-system)
+ ;; tests: 332 passed, 2 skipped
(native-inputs
(list python-pytest
python-pytest-html
python-setuptools
- python-wheel))
- (propagated-inputs (list python-six python-parse))
+ python-setuptools-scm))
+ (propagated-inputs
+ (list python-six ;hard dependency
+ python-parse))
(home-page "https://github.com/jenisys/parse_type")
(synopsis "Extended parse module")
(description "Parse_type extends the python parse module.")