sharlatan pushed a commit to branch python-team
in repository guix.

commit 1614f305e285f9a0e96b614b2c70973fc5931509
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Mar 25 08:56:52 2025 +0100

    gnu: python-netaddr: Move to (gnu packages python-web).
    
    * gnu/packages/python-xyz.scm (python-netaddr): Move from here…
    * gnu/packages/python-web.scm (python-netaddr): …to here.
    
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-web.scm | 20 ++++++++++++++++++++
 gnu/packages/python-xyz.scm | 20 --------------------
 2 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 39094c753a..35535308e2 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -4362,6 +4362,26 @@ verification of the SSL peer.")
     (home-page "https://github.com/cedadev/ndg_httpsclient/";)
     (license license:bsd-3)))
 
+(define-public python-netaddr
+  (package
+    (name "python-netaddr")
+    (version "0.8.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "netaddr" version))
+       (sha256
+         (base32
+          "0hx2npi0wnhwlcybilgwlddw6qffx1mb7a3sj4p9s7bvl33mgk6n"))))
+    (build-system python-build-system)
+    (arguments `(#:tests? #f)) ;; No tests.
+    (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 license:bsd-3)))
+
 (define-public python-nh3
   (package
     (name "python-nh3")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0f740eb621..ccaf4d8b1e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17435,26 +17435,6 @@ reading and writing MessagePack data.")
                  ((".fromstring\\(") ".frombytes("))
                #t))))))))
 
-(define-public python-netaddr
-  (package
-    (name "python-netaddr")
-    (version "0.8.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (pypi-uri "netaddr" version))
-       (sha256
-         (base32
-          "0hx2npi0wnhwlcybilgwlddw6qffx1mb7a3sj4p9s7bvl33mgk6n"))))
-    (build-system python-build-system)
-    (arguments `(#:tests? #f)) ;; No tests.
-    (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 license:bsd-3)))
-
 (define-public python-openstep-plist
  (package
   (name "python-openstep-plist")

Reply via email to