diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-31 14:59:42 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-31 17:06:54 +0100 |
commit | 0a29512607d589f2deab870e773b48ee31a6a4d6 (patch) | |
tree | 1e4bf3b388ee489c4dbdbbdfccd0cd74f0e8e91a /gnu/packages/python-xyz.scm | |
parent | f661a6f8c684055bf3afda6b0598dfc27a625ed6 (diff) |
gnu: Remove python-ipaddress.
It was a back port of Python 3.3+ "ipaddress" module, not maintained
since 2019 and has no users in Guix.
* gnu/packages/python-xyz.scm (python-ipaddress): Delete variable.
Change-Id: I8a7f1c49d0d3b409dde8191472e24e49abf45bb6
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index ef8c6717f4..ed06bd0d41 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -18242,25 +18242,6 @@ suitable for a wide range of protocols based on the ASN.1 specification.") implementations of ASN.1-based codecs and protocols.") (license license:bsd-3))) -(define-public python-ipaddress - (package - (name "python-ipaddress") - (version "1.0.23") - (source (origin - (method url-fetch) - (uri (pypi-uri "ipaddress" version)) - (sha256 - (base32 - "1qp743h30s04m3cg3yk3fycad930jv17q7dsslj4mfw0jlvf1y5p")))) - (build-system python-build-system) - (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.") - (license license:psfl))) - (define-public python-asn1tools (package (name "python-asn1tools") |