diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-07-21 10:26:18 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-07-21 10:26:18 +0300 |
commit | 4637019ce16a2c077b6f7e7fa3bbd2cd3b4ac664 (patch) | |
tree | d7045788d278fe4595eed702bac0d8731476fd10 /gnu | |
parent | 99d48f7a2ccee277ecd5e5bd57179e6c8e8fdfa0 (diff) | |
download | guix-4637019ce16a2c077b6f7e7fa3bbd2cd3b4ac664.tar.gz |
gnu: Add python-importlib-resources.
* gnu/packages/python-xyz.scm (python-importlib-resources): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 748f48f229..8bddd521b6 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -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") |