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

commit 31eb69204ff3b37eb2ef1e2311f2e8f102cc9d3f
Author: Ricardo Wurmus <rek...@elephly.net>
AuthorDate: Thu Jan 9 10:36:29 2025 +0100

    gnu: Remove python-pathlib.
    
    This package is obsolete, the module it provides is part of the standard
    library, and the package has no users.
    
    * gnu/packages/python-xyz.scm (python-pathlib): Remove variable.
    
    Change-Id: I8c724ba7b62ad5602f6abdb4e5fdaf2806180ab5
---
 gnu/packages/python-xyz.scm | 34 ----------------------------------
 1 file changed, 34 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d15749b1d1..0bbbe2e834 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -21208,40 +21208,6 @@ doesn't know about.")
         ; for dictionary*.txt
         license:cc-by-sa3.0))))
 
-(define-public python-pathlib
-  (package
-    (name "python-pathlib")
-    (version "1.0.1")
-    (source (origin
-              (method url-fetch)
-              (uri (pypi-uri "pathlib" version))
-              (sha256
-               (base32
-                "17zajiw4mjbkkv6ahp3xf025qglkj0805m9s41c45zryzj6p2h39"))))
-    (build-system python-build-system)
-    ;; The tests depend on the internal "test" module, which does not provide
-    ;; a stable interface.
-    (arguments `(#:tests? #f))
-    (home-page "https://pathlib.readthedocs.org/";)
-    (synopsis "Object-oriented file system paths")
-    (description "Pathlib offers a set of classes to handle file system paths.
-It offers the following advantages over using string objects:
-
-@enumerate
-@item No more cumbersome use of os and os.path functions.  Everything can
-be done easily through operators, attribute accesses, and method calls.
-@item Embodies the semantics of different path types.  For example,
-comparing Windows paths ignores casing.
-@item Well-defined semantics, eliminating any inconsistencies or
-ambiguities (forward vs. backward slashes, etc.).
-@end enumerate
-
-Note: In Python 3.4, pathlib is now part of the standard library.  For other
-Python versions please consider python-pathlib2 instead, which tracks the
-standard library module.  This module (python-pathlib) isn't maintained
-anymore.")
-    (license license:expat)))
-
 (define-public python-jellyfish
   (package
     (name "python-jellyfish")

Reply via email to