gnu: Add python-types-dataclasses.
* gnu/packages/python-xyz.scm (python-types-dataclasses): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
9cdce964ca
commit
82a00693b7
1 changed files with 18 additions and 0 deletions
|
@ -28903,3 +28903,21 @@ but not binary streams.")
|
||||||
"This package provides ECMAScript parsing infrastructure for
|
"This package provides ECMAScript parsing infrastructure for
|
||||||
multipurpose analysis in Python.")
|
multipurpose analysis in Python.")
|
||||||
(license license:bsd-3)))
|
(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)))
|
||||||
|
|
Reference in a new issue