mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: python-rdflib: Use PYPI-URI.
* gnu/packages/rdf.scm (python-rdflib)[source]: Use PYPI-URI. [arguments]: Use INVOKE in commented build phase.
This commit is contained in:
parent
48b11025b7
commit
4255818d1c
1 changed files with 6 additions and 10 deletions
|
@ -304,13 +304,10 @@ (define-public python-rdflib
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (pypi-uri "rdflib" version))
|
||||||
"https://pypi.python.org/packages/source/r/rdflib/rdflib-"
|
|
||||||
version
|
|
||||||
".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0398c714znnhaa2x7v51b269hk20iz073knq2mvmqp2ma92z27fs"))))
|
"0398c714znnhaa2x7v51b269hk20iz073knq2mvmqp2ma92z27fs"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(;; FIXME: Three test failures. Should be fixed next release.
|
'(;; FIXME: Three test failures. Should be fixed next release.
|
||||||
|
@ -321,7 +318,7 @@ (define-public python-rdflib
|
||||||
;; (lambda _
|
;; (lambda _
|
||||||
;; ;; Run tests from the build directory so python3 only
|
;; ;; Run tests from the build directory so python3 only
|
||||||
;; ;; sees the installed 2to3 version.
|
;; ;; sees the installed 2to3 version.
|
||||||
;; (zero? (system* "nosetests" "--where=./build/src")))))))
|
;; (invoke "nosetests" "--where=./build/src"))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-nose" ,python-nose)))
|
`(("python-nose" ,python-nose)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
|
@ -329,13 +326,12 @@ (define-public python-rdflib
|
||||||
("python-isodate" ,python-isodate)
|
("python-isodate" ,python-isodate)
|
||||||
("python-pyparsing" ,python-pyparsing)))
|
("python-pyparsing" ,python-pyparsing)))
|
||||||
(home-page "https://github.com/RDFLib/rdflib")
|
(home-page "https://github.com/RDFLib/rdflib")
|
||||||
(synopsis
|
(synopsis "Python RDF library")
|
||||||
"Python RDF library")
|
|
||||||
(description
|
(description
|
||||||
"RDFLib is a Python library for working with RDF, a simple yet
|
"RDFLib is a Python library for working with RDF, a simple yet
|
||||||
powerful language for representing information.")
|
powerful language for representing information.")
|
||||||
(license (non-copyleft "file://LICENSE"
|
(license (non-copyleft "file://LICENSE"
|
||||||
"See LICENSE in the distribution."))))
|
"See LICENSE in the distribution."))))
|
||||||
|
|
||||||
(define-public python2-rdflib
|
(define-public python2-rdflib
|
||||||
(package-with-python2 python-rdflib))
|
(package-with-python2 python-rdflib))
|
||||||
|
|
Loading…
Reference in a new issue