From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cyril Roelandt Subject: [PATCH 09/10] gnu: Add python-pkginfo. Date: Wed, 13 Sep 2017 01:13:07 +0200 Message-ID: <20170912231307.4707-1-tipecaml@gmail.com> References: Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51260) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1druNb-0007h4-6s for guix-devel@gnu.org; Tue, 12 Sep 2017 19:14:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1druNY-0006ID-1w for guix-devel@gnu.org; Tue, 12 Sep 2017 19:14:07 -0400 Received: from mail-wm0-x22c.google.com ([2a00:1450:400c:c09::22c]:43188) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1druNX-0006Hy-Rn for guix-devel@gnu.org; Tue, 12 Sep 2017 19:14:03 -0400 Received: by mail-wm0-x22c.google.com with SMTP id a137so3446786wma.0 for ; Tue, 12 Sep 2017 16:14:03 -0700 (PDT) In-Reply-To: List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/python.scm (python-pkginfo, python2-pkginfo): New variables. --- gnu/packages/python.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index cfe97b495..0da26b9d9 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -16362,3 +16362,33 @@ design and layout.") (define-public python2-tqdm (package-with-python2 python-tqdm)) + +(define-public python-pkginfo + (package + (name "python-pkginfo") + (version "1.4.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pkginfo" version)) + (sha256 + (base32 + "17pqjfpq3c6xzdmk8pski6jcjgjv78q00zjf2bgzb668pzm6l6mv")))) + (build-system python-build-system) + (arguments + ;; The tests are broken upstream. + '(#:tests? #f)) + (home-page + "https://code.launchpad.net/~tseaver/pkginfo/trunk") + (synopsis + "Query metadatdata from sdists / bdists / installed packages.") + (description + "API to query the distutils metadata written in the PKG-INFO file inside a +source distriubtion (an sdist) or a binary distribution (e.g., created by +running bdist_egg). It can also query the EGG-INFO directory of an installed +distribution, and the *.egg-info stored in a \"development checkout\" (e.g, +created by running setup.py develop).") + (license license:expat))) + +(define-public python2-pkginfo + (package-with-python2 python-pkginfo)) -- 2.14.1