From 82a00693b74f507ca20bfd09b0aee0109ee8c455 Mon Sep 17 00:00:00 2001 From: Pierre-Henry Fröhring Date: Sun, 30 Jan 2022 17:13:54 +0100 Subject: gnu: Add python-types-dataclasses. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/python-xyz.scm (python-types-dataclasses): New variable. Signed-off-by: Ludovic Courtès --- gnu/packages/python-xyz.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 3be20df7e1..b65022ac90 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -28903,3 +28903,21 @@ but not binary streams.") "This package provides ECMAScript parsing infrastructure for multipurpose analysis in Python.") (license license:bsd-3))) + +(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) + (home-page "https://github.com/python/typeshed") + (synopsis "Typing stubs for dataclasses") + (description + "This packages provides a collection of library stubs for Python, with +static types.") + (license license:asl2.0))) -- cgit v1.2.3