diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-18 14:09:21 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:02 +0100 |
| commit | 4e787594a9f211521d678f0e9f8324f193f39d1d (patch) | |
| tree | c618adde2491f6880cabc1980da2ecbccc374c26 /gnu/packages/python-xyz.scm | |
| parent | 98edb2997b8fd12c00a72c7185311e5e53c17460 (diff) | |
gnu: Add python-id.
* gnu/packages/python-xyz.scm (python-id): New variable.
Change-Id: I6163752c272cfd1e4dc4ef9be63fc9dbf0d157e9
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 143368e28b..10a8f38ebe 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -925,6 +925,30 @@ supports: @end itemize") (license license:expat))) +(define-public python-id + (package + (name "python-id") + (version "1.5.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "id" version)) + (sha256 + (base32 "07acfgq7vmbz94p5axn9d40m8qjcgfllfkr4jz7dpfxcksjbhb19")))) + (build-system pyproject-build-system) + (native-inputs + (list python-flit-core + python-pretend + python-pytest)) + (propagated-inputs + (list python-requests)) + (home-page "https://github.com/di/id") + (synopsis "Tool for generating OIDC identities") + (description + "This package provides a tool for generating @code{OIDC, OpenID Connect} +identities.") + (license #f))) + (define-public python-jsonpath-ng (package (name "python-jsonpath-ng") |
