summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorRicardo Wurmus <[email protected]>2024-12-17 11:42:40 +0100
committerRicardo Wurmus <[email protected]>2025-01-20 21:37:23 +0100
commit0813d9ad5ce06196f041899cb6a21715d1c77d79 (patch)
treeca95dba091bcfb9f7f97613f5598d3e1f3145154 /gnu/packages/python-xyz.scm
parentd86e890ae633b92ce4e7f7db563cee400a98d334 (diff)
gnu: python-virtualenv: Update to 20.28.0.
* gnu/packages/python-xyz.scm (python-virtualenv): Update to 20.28.0. [build-system]: Use pyproject-build-system. [arguments]: Disable a test. [native-inputs]: Add python-covdefaults, python-coverage, python-flaky, python-hatch-vcs, python-hatchling, python-packaging, python-pytest-env, python-pytest-mock, python-pytest-timeout, python-setuptools, and python-time-machine; remove python-mock and python-setuptools-scm. [propagated-inputs]: Add python-importlib-metadata and python-platformdirs; remove python-appdirs and python-six. Change-Id: Id14e7608aabcba6e03ca081a508c3ac9aff1451c
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm25
1 files changed, 20 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5c7120046e..01e5b257d7 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6585,19 +6585,34 @@ e.g. filters, callbacks and errbacks can all be promises.")
(define-public python-virtualenv
(package
(name "python-virtualenv")
- (version "20.3.1")
+ (version "20.28.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "virtualenv" version))
(sha256
(base32
- "1nbhnpzswcf3lmzn5xabmfdd7ki8r2w2i37y6wml54di6qi1l48c"))))
- (build-system python-build-system)
+ "1aj980vffl4mpq4j67f7a0j07rlm8jp5yw8xh3m8fywfpdi3571c"))))
+ (build-system pyproject-build-system)
+ (arguments
+ ;; These tests require Internet access.
+ (list #:test-flags '(list "-k" "not test_seed_link_via_app_data")))
(native-inputs
- (list python-mock python-pytest python-setuptools-scm))
+ (list python-covdefaults
+ python-coverage
+ python-flaky
+ python-hatch-vcs
+ python-hatchling
+ python-packaging
+ python-pytest
+ python-pytest-env
+ python-pytest-mock
+ python-pytest-timeout
+ python-setuptools
+ python-time-machine))
(propagated-inputs
- (list python-appdirs python-distlib python-filelock python-six))
+ (list python-distlib python-filelock python-importlib-metadata
+ python-platformdirs))
(home-page "https://virtualenv.pypa.io/")
(synopsis "Virtual Python environment builder")
(description