aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gn/packages/python.scm10
1 files changed, 9 insertions, 1 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm
index 7a4bba3..f6c4e92 100644
--- a/gn/packages/python.scm
+++ b/gn/packages/python.scm
@@ -109,7 +109,15 @@ powerful language for representing information.")
"See LICENSE in the distribution."))))
(define-public python2-rdflib-4.2
- (package-with-python2 python-rdflib-4.2))
+ (let ((base (package-with-python2 python-rdflib-4.2)))
+ (package
+ (inherit base)
+ (inputs
+ (append (package-inputs base)
+ `(("python2-nose" ,python2-nose))))
+ (arguments
+ `(#:python ,python-2
+ #:tests? #f))))) ; 3 tests fail, also outside Guix
(define-public python-avro
(package