guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/09: gnu: Add python-ipaddress.


From: Ricardo Wurmus
Subject: 01/09: gnu: Add python-ipaddress.
Date: Fri, 25 Sep 2015 19:45:07 +0000

rekado pushed a commit to branch master
in repository guix.

commit 9a49a5351cdde7a02b57a9491c5de82ad5317485
Author: Ricardo Wurmus <address@hidden>
Date:   Mon Sep 21 22:44:02 2015 +0200

    gnu: Add python-ipaddress.
    
    * gnu/packages/python.scm (python2-ipaddress): New variable.
---
 gnu/packages/python.scm |   25 +++++++++++++++++++++++++
 1 files changed, 25 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 40d31a7..025f3b4 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -4939,3 +4939,28 @@ suitable for a wide range of protocols based on the 
ASN.1 specification.")
 
 (define-public python2-pyasn1
   (package-with-python2 python-pyasn1))
+
+(define-public python2-ipaddress
+  (package
+    (name "python2-ipaddress")
+    (version "1.0.14")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://pypi.python.org/packages/source/i/";
+                           "ipaddress/ipaddress-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0givid4963n57nsjibms2fc347zmcs188q1hw9al1dkc9kj4nvr2"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:tests? #f  ; no tests
+       #:python ,python-2))
+    (home-page "https://github.com/phihag/ipaddress";)
+    (synopsis "IP address manipulation library")
+    (description
+     "This package provides a fast, lightweight IPv4/IPv6 manipulation library
+in Python.  This library is used to create, poke at, and manipulate IPv4 and
+IPv6 addresses and networks.  This is a port of the Python 3.3 ipaddress
+module to older versions of Python.")
+    (license psfl)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]