summaryrefslogtreecommitdiff
path: root/gnu/packages/python-build.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-31 09:20:19 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:24 +0100
commitb4e490053e82f80e329cd6d51ea7aa0763d1a54b (patch)
tree26969fc297ab012c06563db730a6479a45ea0b36 /gnu/packages/python-build.scm
parent34571f52e994bdcc384c2218eb0a8b7971efa959 (diff)
gnu: Add python-jaraco-envs-bootstrap.
* gnu/packages/python-build.scm (python-jaraco-envs-bootstrap): New variable. Change-Id: Ie98d8a3ff626f991acfa73de65f47b4f85667e51 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-build.scm')
-rw-r--r--gnu/packages/python-build.scm30
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 80286535e72..c1a8e265ed7 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -1668,6 +1668,36 @@ WeightedLookup: A specialized RangeMap for selecting an item by weights.
"This Python library provides context managers-related procedures.")
(license license:expat)))
+(define-public python-jaraco-envs-bootstrap
+ (package
+ (name "python-jaraco-envs-bootstrap")
+ (version "2.6.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "jaraco.envs" version))
+ (sha256
+ (base32 "1xb00gfhhhvh44wqq5yqb5bxi79nd97vzvh1xrbb43b40v29b4c0"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list ; avoid extra dependencies.
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'sanity-check))))
+ (propagated-inputs
+ (list python-path
+ python-virtualenv-bootstrap))
+ (native-inputs
+ (list python-setuptools-bootstrap
+ python-setuptools-scm-bootstrap))
+ (home-page "https://github.com/jaraco/jaraco.envs")
+ (synopsis "Classes for orchestrating Python (virtual) environments")
+ (description
+ "This package provides classes for orchestrating Python (virtual)
+environments.")
+ (license license:expat)))
+
(define-public python-jaraco-functools
(package
(name "python-jaraco-functools")