From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59160) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gPPmh-0005NK-DG for guix-patches@gnu.org; Wed, 21 Nov 2018 05:31:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gPPmg-0002OO-CN for guix-patches@gnu.org; Wed, 21 Nov 2018 05:31:03 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:33561) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gPPmg-0002NT-89 for guix-patches@gnu.org; Wed, 21 Nov 2018 05:31:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gPPmg-00079P-3F for guix-patches@gnu.org; Wed, 21 Nov 2018 05:31:02 -0500 Subject: bug#33438: [PATCH] gnu: Add python-wikidata. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: Date: Wed, 21 Nov 2018 11:29:50 +0100 In-Reply-To: (swedebugia's message of "Tue, 20 Nov 2018 00:09:43 +0100") Message-ID: <87efbeu3j5.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: swedebugia Cc: 33438-done@debbugs.gnu.org --=-=-= Content-Type: text/plain Hello, swedebugia skribis: >>>From 76c5e10a1a8f3657408a48170547becd9674898d Mon Sep 17 00:00:00 2001 > From: swedebugia > Date: Tue, 20 Nov 2018 00:07:19 +0100 > Subject: [PATCH] gnu: Add python-wikidata. > > * gnu/packages/python.scm: New variable. Applied with these changes: --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index e13c1cad39..d87b1315e6 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -14625,7 +14625,7 @@ RFC 8265 and RFC 8266.") (source (origin (method url-fetch) - (uri "https://files.pythonhosted.org/packages/8a/60/461dd0d04110bd55cea21bf5b3e58c3662955f5470e7ea0ea4a5542d1733/Wikidata-0.6.1.tar.gz") + (uri (pypi-uri "Wikidata" version)) (sha256 (base32 "08nlnydddfp1jj0cdmshvld1irzngbp3dij928wqsg9ziklm6mw9")))) @@ -14634,7 +14634,8 @@ RFC 8265 and RFC 8266.") `(("python-babel" ,python-babel))) (home-page "https://github.com/dahlia/wikidata") (synopsis "Wikidata client library") - (description "Wikidata SPAQL client library which provides easy APIs to -use Wikidata.org for Python.") - (license license:gplv3))) ; unclear if "or later", bug filed - + (description + "This package provides a Python interface to +@url{https://www.wikidata.org/, Wikidata}.") + (properties '((upstream-name . "Wikidata"))) + (license license:gpl3+))) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable The =E2=80=98PKG-INFO=E2=80=99 file reads this: License: GPLv3 or later and there are no source file headers contradicting it, so it=E2=80=99s definitely GPLv3+. Thank you! Ludo=E2=80=99. --=-=-=--