From mboxrd@z Thu Jan 1 00:00:00 1970 From: Efraim Flashner Subject: [PATCH 08/10] gnu: Add python-pyasn1-modules. Date: Thu, 3 Dec 2015 16:43:29 +0200 Message-ID: <1449153811-32039-9-git-send-email-efraim@flashner.co.il> References: <1449153811-32039-1-git-send-email-efraim@flashner.co.il> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50334) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a4V6q-0006GL-0t for guix-devel@gnu.org; Thu, 03 Dec 2015 09:43:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a4V6o-0000jM-VM for guix-devel@gnu.org; Thu, 03 Dec 2015 09:43:47 -0500 Received: from flashner.co.il ([178.62.234.194]:60940) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a4V6o-0000jB-Hf for guix-devel@gnu.org; Thu, 03 Dec 2015 09:43:46 -0500 Received: from debian-netbook.jct.ac.il (unknown [213.151.53.59]) by flashner.co.il (Postfix) with ESMTPSA id DF7734040C for ; Thu, 3 Dec 2015 14:43:45 +0000 (UTC) In-Reply-To: <1449153811-32039-1-git-send-email-efraim@flashner.co.il> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/python.scm (python-pyasn1-modules) (python2-pyasn1-modules): New variables. --- gnu/packages/python.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 5c71aac..0323399 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -5634,6 +5634,30 @@ suitable for a wide range of protocols based on the ASN.1 specification.") (define-public python2-pyasn1 (package-with-python2 python-pyasn1)) +(define-public python-pyasn1-modules + (package + (name "python-pyasn1-modules") + (version "0.0.8") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pyasn1-modules" version)) + (sha256 + (base32 + "0drqgw81xd3fxdlg89kgd79zzrabvfncvkbybi2wr6w2y4s1jmhh")))) + (build-system python-build-system) + (native-inputs + `(("python-pyasn1" ,python-pyasn1) + ("python-setuptools" ,python-setuptools))) + (home-page "http://sourceforge.net/projects/pyasn1/") + (synopsis "Collection of ASN.1-based protocols modules") + (description + "Pyasn1-modules is a collection of ASN.1-based protocols modules.") + (license bsd-3))) + +(define-public python2-pyasn1-modules + (package-with-python2 python-pyasn1-modules)) + (define-public python2-ipaddress (package (name "python2-ipaddress") -- 2.6.2