guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 3c0b691deff24c8ea468ac61417db7d7a44c8085
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri Oct 31 09:16:51 2025 +0100
gnu: Add python-virtualenv-bootstrap.
* gnu/packages/python-build.scm (python-virtualenv-bootstrap): New variable.
Change-Id: Iba9fbc24886169df3cb42bb1c254359fd8d3fa17
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-build.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 92c03a1355..6fba8e1ca0 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -1740,3 +1740,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)))