mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-zope-deprecation.
* gnu/packages/python-web.scm (python-zope-deprecation): New variable. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
44935b2ebb
commit
a9daf35cb1
1 changed files with 20 additions and 0 deletions
|
@ -3861,3 +3861,23 @@ actions. Instead of taking actions when a function (or class) decorator is
|
||||||
executed at import time, you can defer the action usually taken by the
|
executed at import time, you can defer the action usually taken by the
|
||||||
decorator until a separate scan phase.")
|
decorator until a separate scan phase.")
|
||||||
(license license:repoze)))
|
(license license:repoze)))
|
||||||
|
|
||||||
|
(define-public python-zope-deprecation
|
||||||
|
(package
|
||||||
|
(name "python-zope-deprecation")
|
||||||
|
(version "4.4.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "zope.deprecation" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1pz2cv7gv9y1r3m0bdv7ks1alagmrn5msm5spwdzkb2by0w36i8d"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(native-inputs `())
|
||||||
|
(propagated-inputs `())
|
||||||
|
(home-page "https://zopedeprecation.readthedocs.io/")
|
||||||
|
(synopsis "Function for marking deprecations")
|
||||||
|
(description "The @code{zope.deprecation} module provides a function for
|
||||||
|
marking modules, classes, functions, methods and properties as deprecated,
|
||||||
|
displaying warnings when usaged in application code.")
|
||||||
|
(license license:zpl2.1)))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue