diff options
author | Vinicius Monego <monego@posteo.net> | 2024-06-15 19:09:43 +0200 |
---|---|---|
committer | jgart <jgart@dismail.de> | 2024-06-26 01:37:26 -0500 |
commit | 9f650f53b0443cd650017f91a4dcb7d0b2a927c1 (patch) | |
tree | 5ad811ce6b73974956bafb5e10c3cedbd6ceb6aa /gnu/packages/python-xyz.scm | |
parent | b81e20e23d68f08ff81596d0ab55ea42a367b18d (diff) | |
download | guix-9f650f53b0443cd650017f91a4dcb7d0b2a927c1.tar.gz |
gnu: Add python-userpath.
* gnu/packages/python-xyz.scm (python-userpath): New variable. Change-Id: Ic263ee8e1208273b225aa7e2c14dd85f085254e7 Signed-off-by: jgart <jgart@dismail.de>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 9ad89b8c32..c930bf12f2 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -32301,6 +32301,29 @@ a console. It provides a collection of ‘print’ functions that allow you to cleanly print different types of messages.") (license license:gpl3+))) +(define-public python-userpath + (package + (name "python-userpath") + (version "1.9.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "userpath" version)) + (sha256 + (base32 "05fqxzdi27vqm5lywxs6bm2j4d8k91fx2ihqhg65g4h6mf6jhlkc")))) + (build-system pyproject-build-system) + (arguments + ;; See https://github.com/ofek/userpath/issues/43. + ;; In Guix, tests try to find the temporary build directory in PATH, but + ;; only the store output is present. + (list #:tests? #f)) + (native-inputs (list python-hatchling python-pytest)) + (propagated-inputs (list python-click)) + (home-page "https://github.com/ofek/userpath") + (synopsis "Add locations to the user's PATH") + (description "This package provides a tool for modifying a user's PATH.") + (license license:expat))) + (define-public python-nestedtext (package (name "python-nestedtext") |