diff options
author | Giacomo Leidi <goodoldpaul@autistici.org> | 2019-10-28 18:44:14 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-10-28 23:04:48 +0100 |
commit | 3ce91d44290cee4e10d4436d3fcfba4141b67fcb (patch) | |
tree | c9919a63fa129b5c22d88e1d3236f8bcc8781b34 | |
parent | 2f3c2dafefa08244e0d5834f06416d8dd5a102e4 (diff) | |
download | guix-3ce91d44290cee4e10d4436d3fcfba4141b67fcb.tar guix-3ce91d44290cee4e10d4436d3fcfba4141b67fcb.tar.gz |
gnu: python-pyro4: Update to 4.77.
* gnu/packages/python-xyz.scm (python-pyro4): Update to 4.77.
Signed-off-by: Marius Bakke <mbakke@fastmail.com>
-rw-r--r-- | gnu/packages/python-xyz.scm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index e11a3ea42b..bf5371c07a 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -14329,14 +14329,20 @@ such as figshare or Zenodo.") (define-public python-pyro4 (package (name "python-pyro4") - (version "4.75") + (version "4.77") (source (origin (method url-fetch) (uri (pypi-uri "Pyro4" version)) (sha256 - (base32 "1dfpp36imddx19yv0kd28gk1l71ckhpqy6jd590wpm2680jw15rq")))) + (base32 "0gsjg869y4gpy265s1gj1f2qy6jn5iz8r2bwwnq78r1r5yi15zib")))) (build-system python-build-system) + (arguments + '(#:tests? #f)) ;FIXME: Some tests require network access. + (native-inputs + `(("python-cloudpickle" ,python-cloudpickle) + ("python-dill" ,python-dill) + ("python-msgpack" ,python-msgpack))) (propagated-inputs `(("python-serpent" ,python-serpent))) (home-page "https://pyro4.readthedocs.io") |