mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
gnu: python-sparqlwrapper: Update to 2.0.0.
* gnu/packages/rdf.scm (python-sparqlwrapper): Update to 2.0.0. [source]: Adjust Git URI.
This commit is contained in:
parent
5fcd6aefe9
commit
2c30237809
1 changed files with 5 additions and 8 deletions
|
@ -8,6 +8,7 @@
|
|||
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2020 pukkamustard <pukkamustard@posteo.net>
|
||||
;;; Copyright © 2022 Marius Bakke <marius@gnu.org>
|
||||
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -473,24 +474,20 @@ (define-public hdt-cpp
|
|||
(define-public python-sparqlwrapper
|
||||
(package
|
||||
(name "python-sparqlwrapper")
|
||||
(version "1.8.5")
|
||||
(version "2.0.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/RDFLib/sparqlwrapper.git")
|
||||
(url "https://github.com/RDFLib/sparqlwrapper")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1ia5h06zf6kpw6gdi7f80pzx10m79brj08zrbffb5wn9hzz8x528"))))
|
||||
"1b4vg754kcxvinwdv7pjfmwbnmgm50w8mb2naf2lwp27bpyllvkb"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
'(#:tests? #f)) ; The test suite simply queries external HTTP endpoints.
|
||||
(native-inputs
|
||||
;; Build with setuptools <58 to get lib2to3 support.
|
||||
(list python-nose python-setuptools))
|
||||
(propagated-inputs
|
||||
(list python-rdflib))
|
||||
(propagated-inputs (list python-rdflib))
|
||||
(home-page "https://rdflib.dev/sparqlwrapper/")
|
||||
(synopsis "SPARQL Endpoint interface to Python")
|
||||
(description "Python wrapper around a SPARQL service. It helps in creating
|
||||
|
|
Loading…
Reference in a new issue