diff options
author | Ricardo Wurmus <[email protected]> | 2025-01-09 10:36:29 +0100 |
---|---|---|
committer | Ricardo Wurmus <[email protected]> | 2025-01-20 21:37:38 +0100 |
commit | 145b1c253ea936ae53338b6e40cfb8a520d5f0e8 (patch) | |
tree | 4bb3e873fbd268b53b89d9027b6ccdd23c98b41a /gnu/packages/python-xyz.scm | |
parent | 5a4a529eebbceb992df0954001d1440693c7cc4d (diff) |
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 34 |
1 files changed, 0 insertions, 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") |