~ruther/guix-local

145b1c253ea936ae53338b6e40cfb8a520d5f0e8 — Ricardo Wurmus 1 year, 3 months ago 5a4a529
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
1 files changed, 0 insertions(+), 34 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +0 -34
@@ 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")