diff options
author | Marius Bakke <marius@gnu.org> | 2022-01-18 16:18:38 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-01-18 19:35:54 +0100 |
commit | f5e78d45468f707f9d7597451c56b1adc92cd174 (patch) | |
tree | 651544fe54a46ad1ee844ddc99b2cc4895f05576 | |
parent | a59f4d111d7492304956357b51274634f2d237f6 (diff) | |
download | guix-f5e78d45468f707f9d7597451c56b1adc92cd174.tar.gz |
gnu: python-gevent: Update to 21.12.0.
* gnu/packages/python-xyz.scm (python-gevent): Update to 21.12.0. [propagated-inputs]: Simplify. Move PYTHON-OBJGRAPH ... [native-inputs]: ... here. Remove PYTHON-SIX.
-rw-r--r-- | gnu/packages/python-xyz.scm | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 7d68683f10..b94045d210 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -15693,13 +15693,13 @@ graphviz.") (define-public python-gevent (package (name "python-gevent") - (version "21.1.2") + (version "21.12.0") (source (origin (method url-fetch) (uri (pypi-uri "gevent" version)) (sha256 (base32 - "10f9y899y9nmq51pv4r1zb51b4w5yxx00sz5whvg9vm956hc432j")) + "0kh9mmq811mzfgj60n64icybjp4ryjmfmy1vg7x92yrniibn92zl")) (modules '((guix build utils))) (snippet '(begin @@ -15790,14 +15790,10 @@ graphviz.") (invoke "python" "-m" "gevent.tests" "-unone" "--config" "known_failures.py" "--ignore" "skipped_tests.txt")))))) (propagated-inputs - `(("python-greenlet" ,python-greenlet) - ("python-objgraph" ,python-objgraph) - ("python-zope.event" ,python-zope-event) - ("python-zope.interface" ,python-zope-interface))) + (list python-greenlet python-zope-event python-zope-interface)) (native-inputs - (list python-six - ;; For tests. - python-dnspython python-psutil)) + ;; For tests. + (list python-dnspython python-psutil python-objgraph)) (inputs (list c-ares libev)) (home-page "https://www.gevent.org/") |