guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

07/14: gnu: Add python-types-dataclasses.


From: guix-commits
Subject: 07/14: gnu: Add python-types-dataclasses.
Date: Wed, 2 Feb 2022 12:43:37 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 82a00693b74f507ca20bfd09b0aee0109ee8c455
Author: Pierre-Henry Fröhring <contact@phfrohring.com>
AuthorDate: Sun Jan 30 17:13:54 2022 +0100

    gnu: Add python-types-dataclasses.
    
    * gnu/packages/python-xyz.scm (python-types-dataclasses): New variable.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]