guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit baeed2fbb7a7b322215b19eca4c4953eab738dd7
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri Oct 31 07:27:06 2025 +0100
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 <[email protected]>
---
gnu/packages/python-build.scm | 24 ++++++++++++++++++++++++
gnu/packages/python-xyz.scm | 25 -------------------------
2 files changed, 24 insertions(+), 25 deletions(-)
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 9a96ed0a7c..eabcd2f143 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -1405,6 +1405,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")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 9152bb52a4..ab71fdceb2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14351,31 +14351,6 @@ WeightedLookup: A specialized RangeMap for selecting
an item by weights.
@end itemize")
(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
- python-setuptools-scm
- python-wheel))
- (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-jaraco-functools
(package
(name "python-jaraco-functools")