me
/
guix
Archived
1
0
Fork 0

gnu: Add python-importlib-resources.

* gnu/packages/python-xyz.scm (python-importlib-resources): New variable.
master
Efraim Flashner 2020-07-21 10:26:18 +03:00
parent 99d48f7a2c
commit 4637019ce1
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 23 additions and 0 deletions

View File

@ -6036,6 +6036,29 @@ all the newest features of the standard @code{pathlib} can be used also on
older Python versions.")
(license license:expat)))
(define-public python-importlib-resources
(package
(name "python-importlib-resources")
(version "3.0.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "importlib_resources" version))
(sha256
(base32
"1hq626mx5jl9zfl0wdrjkxsnh8qd98fqv322n68b9251xjk4bxqr"))))
(build-system python-build-system)
(native-inputs
`(("python-setuptools-scm" ,python-setuptools-scm)
("python-toml" ,python-toml)))
(home-page "http://importlib-resources.readthedocs.io/")
(synopsis "Read resources from Python packages")
(description
"@code{importlib_resources} is a backport of Python 3's standard library
@code{importlib.resources} module for Python 2.7, and Python 3.")
(properties `((python2-variant . ,(delay python2-importlib-resources))))
(license license:asl2.0)))
(define-public python2-importlib-resources
(package
(name "python2-importlib-resources")