[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/09: gnu: Add python-ipy.
From: |
Ricardo Wurmus |
Subject: |
07/09: gnu: Add python-ipy. |
Date: |
Fri, 21 Apr 2017 18:40:09 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 42c939a8591c90ca445254e49728be1ce17addf4
Author: Ricardo Wurmus <address@hidden>
Date: Wed Apr 19 14:42:24 2017 +0200
gnu: Add python-ipy.
* gnu/packages/networking.scm (python-ipy): New variable.
---
gnu/packages/networking.scm | 20 +++++++++++++++++++-
1 file changed, 19 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index cb99037..efef2d5 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -1,6 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014, 2017 Ludovic Courtès <address@hidden>
-;;; Copyright © 2015, 2016 Ricardo Wurmus <address@hidden>
+;;; Copyright © 2015, 2016, 2017 Ricardo Wurmus <address@hidden>
;;; Copyright © 2015 Mark H Weaver <address@hidden>
;;; Copyright © 2015, 2016 Stefan Reichör <address@hidden>
;;; Copyright © 2016 Raimon Grau <address@hidden>
@@ -1122,6 +1122,24 @@ IPFIX, RSPAN, CLI, LACP, 802.1ag).")
license:bsd-2 license:bsd-3
license:asl2.0)))) ; all other
+(define-public python-ipy
+ (package
+ (name "python-ipy")
+ (version "0.83")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "IPy" version))
+ (sha256
+ (base32
+ "1f6sdrxclifky4gvkf4gvyv5hx3fjh8vzspnfrqki6qm5d9mmnk1"))))
+ (build-system python-build-system)
+ (home-page "https://github.com/autocracy/python-ipy/")
+ (synopsis "Python class and tools for handling IP addresses and networks")
+ (description "The @code{IP} class allows a comfortable parsing and
+handling for most notations in use for IPv4 and IPv6 addresses and
+networks.")
+ (license license:bsd-3)))
+
(define-public speedtest-cli
(package
(name "speedtest-cli")
- branch master updated (ba85174 -> 6ef94ec), Ricardo Wurmus, 2017/04/21
- 06/09: gnu: Add python-sepolgen., Ricardo Wurmus, 2017/04/21
- 05/09: gnu: Add secilc., Ricardo Wurmus, 2017/04/21
- 01/09: gnu: Add libsepol., Ricardo Wurmus, 2017/04/21
- 02/09: gnu: Add checkpolicy., Ricardo Wurmus, 2017/04/21
- 03/09: gnu: Add libselinux., Ricardo Wurmus, 2017/04/21
- 04/09: gnu: Add libsemanage., Ricardo Wurmus, 2017/04/21
- 08/09: gnu: Add python-setools., Ricardo Wurmus, 2017/04/21
- 09/09: gnu: Add policycoreutils., Ricardo Wurmus, 2017/04/21
- 07/09: gnu: Add python-ipy.,
Ricardo Wurmus <=