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.
1668 "This Python library provides context managers-related procedures.") 1668 "This Python library provides context managers-related procedures.")
1669 (license license:expat))) 1669 (license license:expat)))
1670 1670
1671(define-public python-jaraco-envs-bootstrap
1672 (package
1673 (name "python-jaraco-envs-bootstrap")
1674 (version "2.6.0")
1675 (source
1676 (origin
1677 (method url-fetch)
1678 (uri (pypi-uri "jaraco.envs" version))
1679 (sha256
1680 (base32 "1xb00gfhhhvh44wqq5yqb5bxi79nd97vzvh1xrbb43b40v29b4c0"))))
1681 (build-system pyproject-build-system)
1682 (arguments
1683 (list ; avoid extra dependencies.
1684 #:tests? #f
1685 #:phases
1686 #~(modify-phases %standard-phases
1687 (delete 'sanity-check))))
1688 (propagated-inputs
1689 (list python-path
1690 python-virtualenv-bootstrap))
1691 (native-inputs
1692 (list python-setuptools-bootstrap
1693 python-setuptools-scm-bootstrap))
1694 (home-page "https://github.com/jaraco/jaraco.envs")
1695 (synopsis "Classes for orchestrating Python (virtual) environments")
1696 (description
1697 "This package provides classes for orchestrating Python (virtual)
1698environments.")
1699 (license license:expat)))
1700
1671(define-public python-jaraco-functools 1701(define-public python-jaraco-functools
1672 (package 1702 (package
1673 (name "python-jaraco-functools") 1703 (name "python-jaraco-functools")