diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-10-31 09:16:51 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-07 12:28:24 +0100 |
| commit | 34571f52e994bdcc384c2218eb0a8b7971efa959 (patch) | |
| tree | d2b3c8b5d259f0f3309a7bb3763bd9fe667b8d70 /gnu | |
| parent | cf5bec98aeb34e133a49c35e328984e60d548887 (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')
| -rw-r--r-- | gnu/packages/python-build.scm | 26 |
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.") 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))) |
