From 5b0b42a848aecddc5fead5d9347e0faef140ef64 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sat, 18 Oct 2025 22:18:23 +0100 Subject: [PATCH] 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] : No tests. [native-inputs]: Add python-setuptools. Change-Id: I6e064f79f6ea6914b9d1ac662a52e43887ef977b --- gnu/packages/python-xyz.scm | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 11708b81031a89dfec23af320430091c7a7789e9..ffdb171f05385409be163190f03121bbbf8d6c1e 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