diff options
author | Brendan Tildesley <[email protected]> | 2021-02-25 12:46:42 +1100 |
---|---|---|
committer | Leo Famulari <[email protected]> | 2021-04-09 16:09:24 -0400 |
commit | 944640f3ee07f88a08d8318e72df5fb2bd6328a2 (patch) | |
tree | ba7f97be9ee2143625cb7961ac7a7dd8c8bd5644 | |
parent | 586f017d9800a23c71b347c74aee5017a168b35b (diff) |
gnu: Add python-ifaddr.
* gnu/packages/python-xyz.scm (python-ifaddr): New variable.
-rw-r--r-- | gnu/packages/python-xyz.scm | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index e72d124e28..c52c70ec89 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -43,7 +43,7 @@ ;;; Copyright © 2017, 2018, 2019 Kei Kebreau <[email protected]> ;;; Copyright © 2017 Rutger Helling <[email protected]> ;;; Copyright © 2017 Muriithi Frederick Muriuki <[email protected]> -;;; Copyright © 2017, 2019 Brendan Tildesley <[email protected]> +;;; Copyright © 2017, 2019, 2021 Brendan Tildesley <[email protected]> ;;; Copyright © 2018 Ethan R. Jones <[email protected] ;;; Copyright © 2018 Fis Trivial <[email protected]> ;;; Copyright © 2018 Vijayalakshmi Vedantham <[email protected]> @@ -20988,6 +20988,31 @@ by Igor Pavlov.") (define-public python2-pylzma (package-with-python2 python-pylzma)) +(define-public python-ifaddr + (package + (name "python-ifaddr") + (version "0.1.7") + (source + (origin + (method url-fetch) + (uri (pypi-uri "ifaddr" version)) + (sha256 + (base32 + "150sxdlicwrphmhnv03ykxplyd2jdrxz0mikgnivavgilrn8m7hz")))) + (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda _ (invoke "nosetests")))))) + (native-inputs + `(("python-nose" ,python-nose))) + (home-page "https://github.com/pydron/ifaddr") + (synopsis "Network interface and IP address enumeration library") + (description "This package provides a network interface and IP address +enumeration library in Python.") + (license license:expat))) + (define-public python2-zeroconf (package (name "python2-zeroconf") |