3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add python-stdlib-list.

* gnu/packages/python-xyz.scm (python-stdlib-list): New variable.
This commit is contained in:
Roel Janssen 2021-06-01 10:13:38 +02:00
parent a6a1939251
commit b346a7c7db
No known key found for this signature in database
GPG key ID: CBD0CD5138C19AFC

View file

@ -9692,6 +9692,26 @@ output.")
"Python library that makes exceptions handling and inspection easier.")
(license license:expat)))
(define-public python-stdlib-list
(package
(name "python-stdlib-list")
(version "0.8.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "stdlib-list" version))
(sha256
(base32
"17vdn4q0sdlndc2fr9svapxx6366hnrhkn0fswp1xmr0jxqh7rd1"))))
(build-system python-build-system)
(arguments
`(#:tests? #f)) ; Tests require more dependencies.
(native-inputs
`(("python-sphinx" ,python-sphinx)))
(home-page "https://github.com/jackmaney/python-stdlib-list")
(synopsis "Python Standard Libraries")
(description "This package contains a list of Python Standard Libraries.")
(license license:expat)))
(define-public python-straight-plugin
(package
(name "python-straight-plugin")