diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-03-13 15:46:11 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-03-13 15:46:31 +0000 |
| commit | 3ec1e8297d651bf667fe0d89dbee327c2758d6b7 (patch) | |
| tree | 05632da3d1847c1c2ae3958a8c8295edafc57647 /gnu/packages/python-xyz.scm | |
| parent | 685d46774d210c270a802b64bcae77a5830b8de5 (diff) | |
Revert "gnu: Remove python-virtualenv-for-hatch."
This reverts commit b26441571185e92b5ac5e25ad7c04280d40be0a3.
Hatch still needs a lower version:
...checking requirements: ERROR: hatch==1.9.7
ContextualVersionConflict(virtualenv
20.29.1 (/gnu/store/<...>-python-virtualenv-20.29.1/lib/python3.11/site-packages),
Requirement.parse('virtualenv<20.26.0'), {'hatch'})
Change-Id: I8da2372dc595bb62629581193540ef8bc17295e8
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 984dda47e96..4bd774c160f 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -39870,6 +39870,19 @@ e.g. filters, callbacks and errbacks can all be promises.") "Virtualenv is a tool to create isolated Python environments.") (license license:expat))) +(define-public python-virtualenv-for-hatch + ;; For hatch@1.9.7, remove when no longer required. + (hidden-package + (package + (inherit python-virtualenv) + (version "20.25.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "virtualenv" version)) + (sha256 + (base32 "1gj57xqgrg53yfn9ypikgky01hvazxdyl556kwsc7b7avyxm9dbv"))))))) + ;; XXX: No new release since 2021, no updates on default branch since 2023, no ;; users in Guix; consider to remove if it keeps failing to build. (define-public python-virtualenv-clone |
