gnu: Add python-types-toml.

* gnu/packages/python-xyz.scm (python-types-toml): New variable.
This commit is contained in:
Maxim Cournoyer 2022-04-05 10:53:21 -04:00
parent 63a77de2fc
commit 21db2a0848
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -29512,6 +29512,24 @@ (define-public python-ansicolors
"This package adds ANSI colors and decorations to your strings.")
(license license:isc)))
(define-public python-types-toml
(package
(name "python-types-toml")
(version "0.10.5")
(source
(origin
(method url-fetch)
(uri (pypi-uri "types-toml" version))
(sha256
(base32 "10400bd3yv6rjfnq8galskkbpqz1sfx9sfgr5qwvw04270x4cjgr"))))
(build-system python-build-system)
(home-page "https://github.com/python/typeshed")
(synopsis "Typing stubs for TOML")
(description "This package contains typing stubs for TOML, a very small
subset the Python stubs contained in the complete @code{typeshed}
collection.")
(license license:asl2.0)))
(define-public python-types-ujson
(package
(name "python-types-ujson")