mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 23:32:24 -05:00
gnu: Add python-legacy-api-wrap.
* gnu/packages/python-xyz.scm (python-legacy-api-wrap): New variable.
This commit is contained in:
parent
2ceff35f07
commit
053ab825be
1 changed files with 24 additions and 0 deletions
|
@ -7365,6 +7365,30 @@ (define-public python-get-version
|
|||
@code{setuptools}).")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public python-legacy-api-wrap
|
||||
(package
|
||||
(name "python-legacy-api-wrap")
|
||||
(version "1.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "legacy-api-wrap" version))
|
||||
(sha256
|
||||
(base32
|
||||
"06qhp0g543dy98vpa41hwdalvdbsjfc3ldk474yr9sd75mhl8jh3"))))
|
||||
(build-system python-build-system)
|
||||
(propagated-inputs
|
||||
`(("python-get-version" ,python-get-version)
|
||||
("python-pytest" ,python-pytest)
|
||||
("python-pytest-black" ,python-pytest-black)
|
||||
("python-pytest-cov" ,python-pytest-cov)
|
||||
("python-setuptools" ,python-setuptools)))
|
||||
(home-page "https://github.com/flying-sheep/legacy-api-wrap")
|
||||
(synopsis "Legacy API wrapper")
|
||||
(description "This module defines a decorator to wrap legacy APIs. The
|
||||
primary use case is APIs defined before keyword-only parameters existed.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public python-pyasn1
|
||||
(package
|
||||
(name "python-pyasn1")
|
||||
|
|
Loading…
Reference in a new issue