mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: Add python-pypitoken.
* gnu/packages/python-web.scm (python-pypitoken): New variable. Change-Id: I0e18205ac87be8cc95af80b62c99c087083cef88
This commit is contained in:
parent
8e94036f62
commit
2a68830c48
1 changed files with 21 additions and 0 deletions
|
@ -1638,6 +1638,27 @@ (define-public python-jwcrypto
|
|||
Encryption} (JOSE) Web Standards.")
|
||||
(license license:lgpl3+)))
|
||||
|
||||
(define-public python-pypitoken
|
||||
(package
|
||||
(name "python-pypitoken")
|
||||
(version "7.0.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "pypitoken" version))
|
||||
(sha256
|
||||
(base32 "18hhwmdfs9y5ypl1n8z2h2ys2f52mv5xr043gzgb34mpmg0wi46x"))))
|
||||
(build-system pyproject-build-system)
|
||||
;; There are no tests.
|
||||
(arguments (list #:tests? #false))
|
||||
(propagated-inputs (list python-jsonschema python-pymacaroons
|
||||
python-typing-extensions))
|
||||
(native-inputs (list python-poetry-core))
|
||||
(home-page "https://pypitoken.readthedocs.io/en/latest/")
|
||||
(synopsis "Manipulate PyPI API tokens")
|
||||
(description "This package lets you manipulate PyPI API tokens.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-pyscss
|
||||
(package
|
||||
(name "python-pyscss")
|
||||
|
|
Loading…
Reference in a new issue