diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-03-09 16:35:41 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-03-09 16:35:41 +0100 |
commit | e90e0fad1b3ba79d81f02424e143ee6f4f736e8b (patch) | |
tree | 2c26190fd9114199b0ef79303e18a61100cab4af /gnu/packages/rdf.scm | |
parent | 8ea0700d231a8819fc7e8332e9685f0ce15c174e (diff) | |
parent | 9ec2a4d3fec44f08a55df9f5f3d1a04b83e7fcf6 (diff) | |
download | guix-e90e0fad1b3ba79d81f02424e143ee6f4f736e8b.tar guix-e90e0fad1b3ba79d81f02424e143ee6f4f736e8b.tar.gz |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/rdf.scm')
-rw-r--r-- | gnu/packages/rdf.scm | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/gnu/packages/rdf.scm b/gnu/packages/rdf.scm index 1dd23c28e3..97e6b881cc 100644 --- a/gnu/packages/rdf.scm +++ b/gnu/packages/rdf.scm @@ -315,6 +315,18 @@ ideal (e.g. in LV2 implementations or embedded applications).") (base32 "0kvaf332cqbi47rqzlpdx4mbkvw12mkrzkj8n9l19wk713d4py9w")))) (build-system python-build-system) + (arguments + '(;; FIXME: Three test failures. Try uncommenting the below next update. + #:tests? #f)) + ;; #:phases + ;; (modify-phases %standard-phases + ;; (replace 'check + ;; (lambda _ + ;; ;; Run tests from the build directory so python3 only + ;; ;; sees the installed 2to3 version. + ;; (zero? (system* "nosetests" "--where=./build/src"))))) + (native-inputs + `(("python-nose" ,python-nose))) (propagated-inputs `(("python-html5lib" ,python-html5lib) ("python-isodate" ,python-isodate) @@ -329,12 +341,4 @@ powerful language for representing information.") "See LICENSE in the distribution.")))) (define-public python2-rdflib - (let ((base (package-with-python2 python-rdflib))) - (package - (inherit base) - (inputs - (append (package-inputs base) - `(("python2-nose" ,python2-nose)))) - (arguments - `(#:python ,python-2 - #:tests? #f))))) ; 3 tests fail, also outside Guix + (package-with-python2 python-rdflib)) |