gnu: Add python-id.

* gnu/packages/python-xyz.scm (python-id): New variable.

Change-Id: I6163752c272cfd1e4dc4ef9be63fc9dbf0d157e9
This commit is contained in:
Sharlatan Hellseher 2025-07-18 14:09:21 +01:00
parent 78a05196b5
commit e538fd6493
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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")