~ruther/guix-local

0d889d8523deaaad1b4a2a194eb8dc3883e9b228 — Sharlatan Hellseher 4 months ago dd5cf4e
gnu: python-wikidata: Update to 0.8.1.

* gnu/packages/python-web.scm (python-wikidata): Update to 0.8.1.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[propagated-inputs]: Remove python-babel.
[native-inputs]: Add python-pytest and python-setuptools.
[properties]: Drop them.

Change-Id: I9e189859bdcb7f3038ffa8ab55cae40ea9e1c63e
1 files changed, 12 insertions(+), 11 deletions(-)

M gnu/packages/python-web.scm
M gnu/packages/python-web.scm => gnu/packages/python-web.scm +12 -11
@@ 4333,23 4333,24 @@ set out in RFC 7540 Section 5.3 (Stream Priority).")
(define-public python-wikidata
  (package
    (name "python-wikidata")
    (version "0.6.1")
    (version "0.8.1")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "Wikidata" version))
       (method git-fetch)
       (uri (git-reference
              (url "https://github.com/dahlia/wikidata")
              (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32
         "08nlnydddfp1jj0cdmshvld1irzngbp3dij928wqsg9ziklm6mw9"))))
    (build-system python-build-system)
    (propagated-inputs
     (list python-babel))
        (base32 "06zg74h249phszn1znfcjdz6c3lz350fiabdzn7iqb2xg4xh69a5"))))
    (build-system pyproject-build-system)
    (native-inputs
     (list python-pytest python-setuptools))
    (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")))
     "This package provides a Python interface to @url{https://www.wikidata.org/,
Wikidata}.")
    (license license:gpl3+)))

(define-public python-wsproto