Archived
1
0
Fork 0

gnu: Add python-wikidata.

* gnu/packages/python.scm (python-wikidata): New variable.

Co-authored-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
swedebugia 2018-11-20 00:07:19 +01:00 committed by Ludovic Courtès
parent 1e5b79e5d0
commit ab5d91dd50
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -14617,3 +14617,25 @@ on regular expressions.")
"This module implements the PRECIS Framework as described in RFC 8264, "This module implements the PRECIS Framework as described in RFC 8264,
RFC 8265 and RFC 8266.") RFC 8265 and RFC 8266.")
(license license:expat))) (license license:expat)))
(define-public python-wikidata
(package
(name "python-wikidata")
(version "0.6.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "Wikidata" version))
(sha256
(base32
"08nlnydddfp1jj0cdmshvld1irzngbp3dij928wqsg9ziklm6mw9"))))
(build-system python-build-system)
(propagated-inputs
`(("python-babel" ,python-babel)))
(home-page "https://github.com/dahlia/wikidata")
(synopsis "Wikidata client library")
(description
"This package provides a Python interface to
@url{https://www.wikidata.org/, Wikidata}.")
(properties '((upstream-name . "Wikidata")))
(license license:gpl3+)))