summaryrefslogtreecommitdiff
path: root/gnu/packages/python-build.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-31 07:27:06 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:23 +0100
commitc6229d20692279e4aebc750a081b094c647a87ff (patch)
treefd2882f01688ff12f842a7d462762bf326b43ebd /gnu/packages/python-build.scm
parent5e28584000a50abec4cc7f905172c8ca1129ac18 (diff)
gnu: python-jaraco-context: Move to (gnu packages python-build).
* gnu/packages/python-xyz.scm (python-jaraco-context): Move from here… * gnu/packages/python-build.scm (python-jaraco-context): …to here. [native-inputs]: Replace python-pytest by python-pytest-bootstrap, python-setuptools by python-setuptools-bootstrap. Remove python-wheel. Change-Id: Idd1376ae78b19876ea15149b4f51f31684cbd931 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-build.scm')
-rw-r--r--gnu/packages/python-build.scm24
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")