diff options
author | Sharlatan Hellseher <[email protected]> | 2024-11-11 22:04:06 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2024-12-13 20:23:22 +0000 |
commit | 0e3483f8a99cdb7d82dac455e11644d950a01d27 (patch) | |
tree | 4783d2c6268d38507ea3981c4bb450e52dcabd63 /gnu/packages/python-xyz.scm | |
parent | 236ce6591b118d198861de2ab7a570bfb83465ff (diff) |
gnu: python-execnet: Update to 2.1.1.
* gnu/packages/python-xyz.scm (python-execnet): Update to 2.1.1.
[native-inputs]: Remove python-py, python-pytest, python-pytest-timeout, and
python-setuptools-scm; add python-pytest-bootstrap.
Change-Id: I370f5080d2c4b8017672937e25f8d77de01427d2
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index eec2d1e92d..da83543779 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -19040,21 +19040,18 @@ pure Python module that works on virtually all Python versions.") (license license:expat))) (define-public python-execnet - ;; The latest release (1.9.0) is old and lacks support for Pytest 7.2. - (let ((commit "d6aa1a56773c2e887515d63e50b1d08338cb78a7") - (revision "1")) (package (name "python-execnet") - (version (git-version "1.9.0" revision commit)) + (version "2.1.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/pytest-dev/execnet") - (commit commit))) + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 - "0s60jggcjiw38b7xsh1q2lnnr4c4kaki7c5zsv7xyj7df8ngbbsm")))) + "0xlfd0h9sjl0jpc2fc689a497chwbagali7qr364k75hdyax3jfq")))) (build-system pyproject-build-system) (arguments (list @@ -19087,10 +19084,7 @@ pure Python module that works on virtually all Python versions.") (native-inputs (list python-hatchling python-hatch-vcs - python-py - python-pytest - python-pytest-timeout - python-setuptools-scm)) + python-pytest-bootstrap)) (synopsis "Rapid multi-Python deployment") (description "Execnet provides a share-nothing model with channel-send/receive communication for distributing execution across many @@ -19102,7 +19096,7 @@ minimal and fast API targeting the following uses: @item write scripts to administer multiple environments @end enumerate") (home-page "https://codespeak.net/execnet/") - (license license:expat)))) + (license license:expat))) (define-public python-icalendar (package |