diff options
Diffstat (limited to 'gnu/packages/python-build.scm')
| -rw-r--r-- | gnu/packages/python-build.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index 30033482190..0d3f039e410 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -1458,6 +1458,30 @@ abstractions for handling wheels and installing packages from wheels.") class constructs.") (license license:expat))) +(define-public python-jaraco-context + (package + (name "python-jaraco-context") + (version "6.0.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "jaraco_context" version)) + (sha256 + (base32 "1cyija3n4481r1ykxdx342m07lrfyg4ygbn0in9i82yganjlxblv")))) + (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ;no tests in PyPI archive and Git checkout + (native-inputs + (list python-setuptools-bootstrap + python-setuptools-scm-bootstrap)) + (propagated-inputs + (list python-backports-tarfile)) + (home-page "https://github.com/jaraco/jaraco.context") + (synopsis "Context managers Python library") + (description + "This Python library provides context managers-related procedures.") + (license license:expat))) + (define-public python-pdm-backend (package (name "python-pdm-backend") |
