summaryrefslogtreecommitdiff
path: root/gnu
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
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')
-rw-r--r--gnu/packages/python-build.scm24
-rw-r--r--gnu/packages/python-xyz.scm25
2 files changed, 24 insertions, 25 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.")
1458class constructs.") 1458class constructs.")
1459 (license license:expat))) 1459 (license license:expat)))
1460 1460
1461(define-public python-jaraco-context
1462 (package
1463 (name "python-jaraco-context")
1464 (version "6.0.1")
1465 (source
1466 (origin
1467 (method url-fetch)
1468 (uri (pypi-uri "jaraco_context" version))
1469 (sha256
1470 (base32 "1cyija3n4481r1ykxdx342m07lrfyg4ygbn0in9i82yganjlxblv"))))
1471 (build-system pyproject-build-system)
1472 (arguments
1473 (list #:tests? #f)) ;no tests in PyPI archive and Git checkout
1474 (native-inputs
1475 (list python-setuptools-bootstrap
1476 python-setuptools-scm-bootstrap))
1477 (propagated-inputs
1478 (list python-backports-tarfile))
1479 (home-page "https://github.com/jaraco/jaraco.context")
1480 (synopsis "Context managers Python library")
1481 (description
1482 "This Python library provides context managers-related procedures.")
1483 (license license:expat)))
1484
1461(define-public python-pdm-backend 1485(define-public python-pdm-backend
1462 (package 1486 (package
1463 (name "python-pdm-backend") 1487 (name "python-pdm-backend")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 882054d0d73..a5dcf5d9efc 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14389,31 +14389,6 @@ WeightedLookup: A specialized RangeMap for selecting an item by weights.
14389@end itemize") 14389@end itemize")
14390 (license license:expat))) 14390 (license license:expat)))
14391 14391
14392(define-public python-jaraco-context
14393 (package
14394 (name "python-jaraco-context")
14395 (version "6.0.1")
14396 (source
14397 (origin
14398 (method url-fetch)
14399 (uri (pypi-uri "jaraco_context" version))
14400 (sha256
14401 (base32 "1cyija3n4481r1ykxdx342m07lrfyg4ygbn0in9i82yganjlxblv"))))
14402 (build-system pyproject-build-system)
14403 (arguments
14404 (list #:tests? #f)) ;no tests in PyPI archive and Git checkout
14405 (native-inputs
14406 (list python-setuptools
14407 python-setuptools-scm
14408 python-wheel))
14409 (propagated-inputs
14410 (list python-backports-tarfile))
14411 (home-page "https://github.com/jaraco/jaraco.context")
14412 (synopsis "Context managers Python library")
14413 (description "This Python library provides context managers-related
14414procedures.")
14415 (license license:expat)))
14416
14417(define-public python-jaraco-functools 14392(define-public python-jaraco-functools
14418 (package 14393 (package
14419 (name "python-jaraco-functools") 14394 (name "python-jaraco-functools")