1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

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>
This commit is contained in:
Nicolas Graves
2025-10-31 09:16:51 +01:00
committed by Andreas Enge
parent cf5bec98ae
commit 34571f52e9

View File

@@ -1784,3 +1784,29 @@ processing, values parsing, case insensitive comparison, and more.")
standards, which includes PEP 517, PEP 621 and PEP 660.")
(license license:expat)))
(define-public python-virtualenv-bootstrap
(package
(name "python-virtualenv-bootstrap")
(version "20.29.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "virtualenv" version))
(sha256
(base32
"0dfwnn8i1y33kgxhi4xyhsj4yr5vsin7zf9c343bcbyk700rgf5q"))))
(build-system pyproject-build-system)
(arguments (list #:tests? #f)) ; avoid extra dependencies.
(native-inputs
(list python-hatch-vcs-bootstrap
python-hatchling
python-setuptools-bootstrap))
(propagated-inputs
(list python-distlib
python-filelock-bootstrap
python-platformdirs-bootstrap))
(home-page "https://virtualenv.pypa.io/")
(synopsis "Virtual Python environment builder")
(description
"Virtualenv is a tool to create isolated Python environments.")
(license license:expat)))