diff options
| author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2025-10-19 18:33:01 +0200 |
|---|---|---|
| committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2025-11-07 00:35:27 +0100 |
| commit | 3b88fe6200f64169ba9dd971f12876c7d022e70e (patch) | |
| tree | cbf820a85833c6d9becf8e58d0954dcb5d54c8b4 /gnu/packages/python-web.scm | |
| parent | 04ad78093a9076c47c16f725dfb0b6a20d6f6676 (diff) | |
gnu: Add python-dependency-groups.
* gnu/packages/python-web.scm (python-dependency-groups): New variable.
Change-Id: I1b284453f9ee0602e71dbfc8c6742cd3802c30f6
Diffstat (limited to 'gnu/packages/python-web.scm')
| -rw-r--r-- | gnu/packages/python-web.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index c674367886c..f8d1c705b95 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -481,6 +481,26 @@ extracting, creating, and converting between formats.") @code{.conda} and @code{.tar.bz2} conda packages.") (license license:bsd-3))) +(define-public python-dependency-groups + (package + (name "python-dependency-groups") + (version "1.3.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "dependency_groups" version)) + (sha256 + (base32 "1zgymnk6k984h2wfdpp0vws2ihwqrr9lmxhrij9zs5q5140q61vq")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-packaging python-tomli)) + (native-inputs (list python-flit-core)) + (home-page "https://dependency-groups.readthedocs.io/") + (synopsis "Tools and library for resolving PEP 735 Dependency Group data") + (description + "This package provides a library which is able to parse dependency groups (PEP +735), following includes, and provide that data as output.") + (license license:expat))) + (define-public python-devpi-common (package (name "python-devpi-common") |
