diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-09-20 20:37:05 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:38 +0100 |
| commit | 4aa7f04f2b40aa25ad694d1a4f369267c925e6a2 (patch) | |
| tree | 92284ffd6e1451eba9a9d0fccf0b3350411995ac /gnu/packages/python-web.scm | |
| parent | b58e99b78968b3387bd0737b01d778136998df2d (diff) | |
gnu: python-zope-event: Switch to git-fetch.
* gnu/packages/python-web.scm (python-zope-event)
[source]: Switch to git-fetch.
[home-page]: Update it.
Change-Id: Iaa702fb0209397d022f9f6a6c0eda6ac71c91f01
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
| -rw-r--r-- | gnu/packages/python-web.scm | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 9ba97b3b21f..f73b5081c64 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -4469,17 +4469,20 @@ support for the @code{noload} operations used by @code{zodb}.") (version "6.0") (source (origin - (method url-fetch) - (uri (pypi-uri "zope_event" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/zopefoundation/zope.event") + (commit version))) + (file-name (git-file-name name version)) (sha256 - (base32 "14nzj3wd203z68glpskmvinxxhfq6chjf70li5x8npvwzaacifhf")))) + (base32 "0la3q47c59aq50s036q468bhnmzgs71f1cygv89w6qkk1hkn35ym")))) (build-system pyproject-build-system) (arguments - (list #:test-flags #~(list "src/zope/event/tests.py"))) - (native-inputs - (list python-pytest - python-setuptools)) - (home-page "https://pypi.org/project/zope.event/") + (list + #:test-flags + #~(list "src/zope/event/tests.py"))) + (native-inputs (list python-pytest python-setuptools)) + (home-page "https://zopeevent.readthedocs.io/en/latest/") (synopsis "Event publishing system for Python") (description "Zope.event provides an event publishing API, intended for use by |
