From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33737) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gOshB-0005rB-Q1 for guix-patches@gnu.org; Mon, 19 Nov 2018 18:11:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gOsh5-0001Pe-Ux for guix-patches@gnu.org; Mon, 19 Nov 2018 18:11:09 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:57193) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gOsh4-0001P2-Jk for guix-patches@gnu.org; Mon, 19 Nov 2018 18:11:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gOsh4-0000xM-B7 for guix-patches@gnu.org; Mon, 19 Nov 2018 18:11:02 -0500 Subject: [bug#33438] [PATCH] gnu: Add python-wikidata. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33460) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gOsfv-00059y-Rq for guix-patches@gnu.org; Mon, 19 Nov 2018 18:09:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gOsfs-0000p6-OZ for guix-patches@gnu.org; Mon, 19 Nov 2018 18:09:51 -0500 Received: from mx1.riseup.net ([198.252.153.129]:59288) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gOsfs-0000oY-Gm for guix-patches@gnu.org; Mon, 19 Nov 2018 18:09:48 -0500 From: swedebugia Message-ID: Date: Tue, 20 Nov 2018 00:09:43 +0100 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------440121A1883BA32F5A3612AF" Content-Language: en-US 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: 33438@debbugs.gnu.org, pjotr.public12@thebird.nl This is a multi-part message in MIME format. --------------440121A1883BA32F5A3612AF Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit First step towards integration between Guix<->Wikidata :D -- Cheers Swedebugia --------------440121A1883BA32F5A3612AF Content-Type: text/x-patch; name="0001-gnu-Add-python-wikidata.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0001-gnu-Add-python-wikidata.patch" >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. --- gnu/packages/python.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 2b7482a3e..70cd9ee08 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -14630,3 +14630,24 @@ on regular expressions.") "This module implements the PRECIS Framework as described in RFC 8264, RFC 8265 and RFC 8266.") (license license:expat))) + +(define-public python-wikidata + (package + (name "python-wikidata") + (version "0.6.1") + (source + (origin + (method url-fetch) + (uri "https://files.pythonhosted.org/packages/8a/60/461dd0d04110bd55cea21bf5b3e58c3662955f5470e7ea0ea4a5542d1733/Wikidata-0.6.1.tar.gz") + (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 "Wikidata SPAQL client library which provides easy APIs to +use Wikidata.org for Python.") + (license license:gplv3))) ; unclear if "or later", bug filed + -- 2.18.0 --------------440121A1883BA32F5A3612AF--