diff options
| author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-10-01 17:10:49 -0400 |
|---|---|---|
| committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-10-01 17:10:49 -0400 |
| commit | 2e65e4834a226c570866f2e8976ed7f252b45cd1 (patch) | |
| tree | 21d625bce8d03627680214df4a6622bf8eb79dc9 /gnu/packages/rdf.scm | |
| parent | 9c68ecb24dd1660ce736cdcdea0422a73ec318a2 (diff) | |
| parent | f1a3c11407b52004e523ec5de20d326c5661681f (diff) | |
Merge remote-tracking branch 'origin/master' into staging
With resolved conflicts in:
gnu/packages/bittorrent.scm
gnu/packages/databases.scm
gnu/packages/geo.scm
gnu/packages/gnupg.scm
gnu/packages/gstreamer.scm
gnu/packages/gtk.scm
gnu/packages/linux.scm
gnu/packages/python-xyz.scm
gnu/packages/xorg.scm
guix/build/qt-utils.scm
Diffstat (limited to 'gnu/packages/rdf.scm')
| -rw-r--r-- | gnu/packages/rdf.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/rdf.scm b/gnu/packages/rdf.scm index 0baed8fc17..fb84d8053d 100644 --- a/gnu/packages/rdf.scm +++ b/gnu/packages/rdf.scm @@ -443,3 +443,30 @@ parser and serializer.") RDF data that can also be queried for Triple Patterns. This package provides a C++ library as well as various command-line tools to to work with HDT.") (license license:lgpl2.1+))) + +(define-public python-sparqlwrapper + (package + (name "python-sparqlwrapper") + (version "1.8.5") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/RDFLib/sparqlwrapper.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1ia5h06zf6kpw6gdi7f80pzx10m79brj08zrbffb5wn9hzz8x528")))) + (build-system python-build-system) + (arguments + '(#:tests? #f)) ; The test suite simply queries external HTTP endpoints. + (native-inputs + `(("python-nose" ,python-nose))) + (propagated-inputs + `(("python-rdflib" ,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 +the query URI and, possibly, convert the result into a more manageable +format.") + (license license:w3c))) |
