mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-zope-dottedname.
* gnu/packages/python-web.scm (python-zope-dottedname): New variable. Change-Id: I10b77975606e99b76b39c93bf13a7c09144cac25 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
58212eea69
commit
388eb14f44
1 changed files with 25 additions and 0 deletions
|
@ -4489,6 +4489,31 @@ supporting C extension) from both Python 3.2 and Python 3.3. The fork adds
|
||||||
support for the @code{noload} operations used by @code{zodb}.")
|
support for the @code{noload} operations used by @code{zodb}.")
|
||||||
(license (list license:psfl license:zpl2.1))))
|
(license (list license:psfl license:zpl2.1))))
|
||||||
|
|
||||||
|
(define-public python-zope-dottedname
|
||||||
|
(package
|
||||||
|
(name "python-zope-dottedname")
|
||||||
|
(version "7.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/zopefoundation/zope.dottedname")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0h7a637zsl1a3f0rpb2nw41mzxv0pqyj8ahn6h60n2c1px912rbd"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:test-backend #~'custom
|
||||||
|
#:test-flags #~(list "src/zope/dottedname/tests.py")))
|
||||||
|
(native-inputs (list python-setuptools))
|
||||||
|
(home-page "https://zopedottedname.readthedocs.io")
|
||||||
|
(synopsis "Resolver for Python dotted names")
|
||||||
|
(description
|
||||||
|
"This package provides a @code{resolve()} function that resolves strings
|
||||||
|
containing dotted names into the appropriate Python object.")
|
||||||
|
(license license:zpl2.1)))
|
||||||
|
|
||||||
(define-public python-zope-event
|
(define-public python-zope-event
|
||||||
(package
|
(package
|
||||||
(name "python-zope-event")
|
(name "python-zope-event")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue