diff options
author | Gábor Boskovits <boskovits@gmail.com> | 2017-11-05 20:54:27 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-11-07 18:09:13 +0100 |
commit | 63b7fbe1bb3ff2b8a97793f91a0a6d7de8977a75 (patch) | |
tree | 6a7632d4361a7b53b24dd14d6162b9813d50f0ac /gnu/packages/package-management.scm | |
parent | db0164b21f82d3cb344e496874eeede9317e95ad (diff) |
gnu: diffoscope: Update to 88.
* gnu/packages/package-management.scm (diffoscope): Update to 88.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/package-management.scm')
-rw-r--r-- | gnu/packages/package-management.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm index 87032090cc..0bb31c9e99 100644 --- a/gnu/packages/package-management.scm +++ b/gnu/packages/package-management.scm @@ -507,13 +507,13 @@ transactions from C or Python.") (define-public diffoscope (package (name "diffoscope") - (version "81") + (version "88") (source (origin (method url-fetch) (uri (pypi-uri name version)) (sha256 (base32 - "093lxy6zj69i19fxdkj3jnai3b1ajqbksyqcvy8wqj3plaaxjna5")))) + "1zp6nb37igssxg4bqsi3cw5klx4prhcx50mzg4463l50mssn8mp2")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases @@ -534,6 +534,10 @@ transactions from C or Python.") (("@tool_required\\('readelf'\\)") "") (("\\['readelf',") (string-append "['" (which "readelf") "',"))) + #t)) + (add-before 'check 'delete-failing-test + (lambda _ + (delete-file "tests/test_tools.py") ;this requires /sbin to be on the path #t))))) (inputs `(("rpm" ,rpm) ;for rpm-python ("python-file" ,python-file) |