diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-05-08 11:54:19 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-14 21:34:32 +0100 |
commit | 663ec5cba6dda2cd7dc258ed7a473899ce66714f (patch) | |
tree | 5fa38fdeba054fdfa7324e609e071240da71b349 /gnu/packages/python-xyz.scm | |
parent | f6d233886138656d5d6f0fca8cd9005c160826fa (diff) |
gnu: Add python-pytoolconfig.
* gnu/packages/python-xyz.scm (python-pytoolconfig): New variable.
Change-Id: I203d68b0eba0b38020a1be98904be386dfc3b2ed
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d045f8a349..09afe831df 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -2210,6 +2210,33 @@ task of adding retry behavior to just about anything.") implementation for the Telegram Bot API.") (license license:gpl2))) +(define-public python-pytoolconfig + (package + (name "python-pytoolconfig") + (version "1.3.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pytoolconfig" version)) + (sha256 + (base32 "1bnvg9yiwp2fn0lvzhp1dd2mvrymxvjnasmbdap3i0hhdwdbvrji")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-packaging + python-platformdirs + python-pydantic + python-sphinx + python-sphinx-autodoc-typehints + python-sphinx-rtd-theme + python-tabulate + python-tomli)) + (native-inputs (list python-pdm-backend python-pytest)) + (home-page "https://pypi.org/project/pytoolconfig/") + (synopsis "Python tool configuration") + (description "The goal of this project is to manage configuration for +Python tools, such as rope and add support for a @file{pyproject.toml} +configuration file.") + (license license:lgpl3+))) + (define-public python-colorlog (package (name "python-colorlog") |