summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-18 22:18:23 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-18 22:18:37 +0100
commit5b0b42a848aecddc5fead5d9347e0faef140ef64 (patch)
tree2d9f22efb37e45928b53b47a41bf8ee906cfa11b /gnu
parent87895d6f7168bf775cb5fe88e989ee3533c0cba1 (diff)
gnu: python-types-dataclasses: Update to 0.6.6.
* gnu/packages/python-xyz.scm (python-types-dataclasses): Update to 0.6.6. [buld-system]: Switch to pyproject-build-system. [arguments] <tests?>: No tests. [native-inputs]: Add python-setuptools. Change-Id: I6e064f79f6ea6914b9d1ac662a52e43887ef977b
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm18
1 files changed, 10 insertions, 8 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 11708b8103..ffdb171f05 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -36195,14 +36195,16 @@ multipurpose analysis in Python.")
(define-public python-types-dataclasses
(package
(name "python-types-dataclasses")
- (version "0.6.1")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "types-dataclasses" version))
- (sha256
- (base32
- "1mq6qd365m8ml889zl5dxj9kncjv71iq1d1fvgj59y0ixlpm6s35"))))
- (build-system python-build-system)
+ (version "0.6.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "types-dataclasses" version))
+ (sha256
+ (base32 "1fgp96m4kfxrwy6rdv3p24jzh6hf68702sfdfhcmm3aniv7jynjb"))))
+ (build-system pyproject-build-system)
+ (arguments (list #:tests? #f)) ;no tests
+ (native-inputs (list python-setuptools))
(home-page "https://github.com/python/typeshed")
(synopsis "Typing stubs for dataclasses")
(description