diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-05-08 00:29:03 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:18:43 +0000 |
commit | 3cc911e6f03d5944363cf7bc6b0f9ca1b796d910 (patch) | |
tree | ece0f2558ac87d2f274d53a0587c4219ca2d8a3b | |
parent | c8e6d43a5fcad0ba7a9961c135ef00cd7653f2e6 (diff) | |
download | guix-3cc911e6f03d5944363cf7bc6b0f9ca1b796d910.tar.gz guix-3cc911e6f03d5944363cf7bc6b0f9ca1b796d910.zip |
gnu: Add python-pathable.
* gnu/packages/python-xyz.scm (python-pathable): New variable.
Change-Id: Ib8d21227db48a9b34941e6c5b291c86efe828ea6
-rw-r--r-- | gnu/packages/python-xyz.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index b2d4bbbd69..f31324bdd0 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -11876,6 +11876,25 @@ child application and control it as if a human were typing commands.") functions like pickle, json or PyYAML module.") (license license:bsd-3))) +(define-public python-pathable + (package + (name "python-pathable") + (version "0.4.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pathable" version)) + (sha256 + (base32 "1ayw9jzlw0qrz51rcfbba00xqq0c7vs3lgwrib67c1z5bcqrv1jw")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #false)) ;there are none + (native-inputs (list python-poetry-core)) + (home-page "https://github.com/p1c2u/pathable") + (synopsis "Object-oriented paths") + (description "With this package you can traverse resources like paths and +access resources on demand with separate accessor layer.") + (license license:asl2.0))) + (define-public python-pathlib2 (package (name "python-pathlib2") |