[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/08: gnu: Add python-netaddr.
From: |
Cyril Roelandt |
Subject: |
01/08: gnu: Add python-netaddr. |
Date: |
Sun, 13 Sep 2015 22:51:12 +0000 |
steap pushed a commit to branch master
in repository guix.
commit 6e5e39f4063b30fcea6d5a9af6769236d8a57cd3
Author: Cyril Roelandt <address@hidden>
Date: Tue Sep 8 00:22:49 2015 +0200
gnu: Add python-netaddr.
* gnu/packages/python.scm (python-netaddr, python2-netaddr): New variables.
---
gnu/packages/python.scm | 28 ++++++++++++++++++++++++++++
1 files changed, 28 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index feddd1a..f85c788 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -4739,3 +4739,31 @@ reading and writing MessagePack data.")
(define-public python2-msgpack
(package-with-python2 python-msgpack))
+
+(define-public python-netaddr
+ (package
+ (name "python-netaddr")
+ (version "0.7.18")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://pypi.python.org/packages/source/n/netaddr/netaddr-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "06dxjlbcicq7q3vqy8agq11ra01kvvd47j4mk6dmghjsyzyckxd1"))))
+ (build-system python-build-system)
+ (arguments `(#:tests? #f)) ;; No tests.
+ (inputs
+ `(("python-setuptools" ,python-setuptools)))
+ (home-page "https://github.com/drkjam/netaddr/")
+ (synopsis "Pythonic manipulation of network addresses")
+ (description
+ "A Python library for representing and manipulating IPv4, IPv6, CIDR, EUI
+and MAC network addresses.")
+ (license bsd-3)))
+
+(define-public python2-netaddr
+ (package-with-python2 python-netaddr))
- branch master updated (59ef203 -> 27cc9f2), Cyril Roelandt, 2015/09/13
- 01/08: gnu: Add python-netaddr.,
Cyril Roelandt <=
- 02/08: gnu: Add python-stevedore., Cyril Roelandt, 2015/09/13
- 03/08: gnu: Add python-oslo.config., Cyril Roelandt, 2015/09/13
- 04/08: gnu: Add python-wrapt, Cyril Roelandt, 2015/09/13
- 05/08: gnu: Add python-iso8601., Cyril Roelandt, 2015/09/13
- 06/08: gnu: Add python-monotonic., Cyril Roelandt, 2015/09/13
- 07/08: gnu: Add python-debtcollector., Cyril Roelandt, 2015/09/13
- 08/08: gnu: Add python-oslo.utils., Cyril Roelandt, 2015/09/13