summaryrefslogtreecommitdiff
path: root/gnu/packages/python-build.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-31 09:16:51 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:24 +0100
commit34571f52e994bdcc384c2218eb0a8b7971efa959 (patch)
treed2b3c8b5d259f0f3309a7bb3763bd9fe667b8d70 /gnu/packages/python-build.scm
parentcf5bec98aeb34e133a49c35e328984e60d548887 (diff)
gnu: Add python-virtualenv-bootstrap.
* gnu/packages/python-build.scm (python-virtualenv-bootstrap): New variable. Change-Id: Iba9fbc24886169df3cb42bb1c254359fd8d3fa17 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-build.scm')
-rw-r--r--gnu/packages/python-build.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 7276e781187..80286535e72 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -1784,3 +1784,29 @@ processing, values parsing, case insensitive comparison, and more.")
1784standards, which includes PEP 517, PEP 621 and PEP 660.") 1784standards, which includes PEP 517, PEP 621 and PEP 660.")
1785 (license license:expat))) 1785 (license license:expat)))
1786 1786
1787(define-public python-virtualenv-bootstrap
1788 (package
1789 (name "python-virtualenv-bootstrap")
1790 (version "20.29.1")
1791 (source
1792 (origin
1793 (method url-fetch)
1794 (uri (pypi-uri "virtualenv" version))
1795 (sha256
1796 (base32
1797 "0dfwnn8i1y33kgxhi4xyhsj4yr5vsin7zf9c343bcbyk700rgf5q"))))
1798 (build-system pyproject-build-system)
1799 (arguments (list #:tests? #f)) ; avoid extra dependencies.
1800 (native-inputs
1801 (list python-hatch-vcs-bootstrap
1802 python-hatchling
1803 python-setuptools-bootstrap))
1804 (propagated-inputs
1805 (list python-distlib
1806 python-filelock-bootstrap
1807 python-platformdirs-bootstrap))
1808 (home-page "https://virtualenv.pypa.io/")
1809 (synopsis "Virtual Python environment builder")
1810 (description
1811 "Virtualenv is a tool to create isolated Python environments.")
1812 (license license:expat)))