diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-12-19 16:28:03 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-20 21:37:25 +0100 |
commit | 6cb2030688c643ccd62905df7d52a81fbed63891 (patch) | |
tree | ac2d853bfd4a787a942687cbbe37b0d71d853827 | |
parent | e06450378ce9cca45895889593fbcb16e8263644 (diff) | |
download | guix-6cb2030688c643ccd62905df7d52a81fbed63891.tar.gz guix-6cb2030688c643ccd62905df7d52a81fbed63891.zip |
gnu: python-eventlet: Update to 0.38.2.
* gnu/packages/python-xyz.scm (python-eventlet): Update to 0.38.2.
[native-inputs]: Add python-pre-commit.
[arguments]: Disable one more test.
Change-Id: I73638abba7d5363538d7c65254e610e704fbe5d0
-rw-r--r-- | gnu/packages/python-xyz.scm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index bb7dd0c541..7ec36dde24 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -4608,23 +4608,24 @@ standard.") (define-public python-eventlet (package (name "python-eventlet") - (version "0.35.2") + (version "0.38.2") (source (origin (method url-fetch) (uri (pypi-uri "eventlet" version)) (sha256 (base32 - "0zd59yqqb2lzg3f9lkd3yw1wanwy5wkis3n6d826m0bz1gi664ld")))) + "1b7dhy3pyp3nfv0zzjrs7i3kam40cl1nh3acy2fd59ywy4x84ika")))) (build-system pyproject-build-system) (propagated-inputs (list python-dnspython python-greenlet python-monotonic)) (native-inputs (list python-black - python-hatchling python-hatch-vcs - python-pytest + python-hatchling python-isort + python-pre-commit + python-pytest python-twine)) (arguments (list @@ -4636,6 +4637,7 @@ standard.") " and not test_noraise_dns_tcp" " and not test_raise_dns_tcp" " and not test_hosts_no_network" + " and not test_import_rdtypes_then_eventlet" " and not test_patcher_existing_locks" " and not test_dns_methods_are_green")) #:phases |