summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-17 22:26:40 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:11 +0100
commit718e90c43d1bbb819192a9cacd6748af0e6dfc8e (patch)
tree43e53d4699d9e99bca8f268422bd988191354875 /gnu/packages/python-web.scm
parent4825024e5208250bdea79574fbda5862b3d0a1c8 (diff)
gnu: python-hupper: Update to 1.12.1.
* gnu/packages/python-web.scm (python-hupper): Update to 1.12.1. [build-system]: Use pyproject. [arguments] <test-flags>: Ignore problematic tests. [propagated-inputs]: Remove python-pytz; add python-watchdog. [native-inputs]: Remove python-mock, python-pytest-runner, and python-watchdog. Change-Id: I5ec147836a59a16bc39f8444c4565d9d388005f2
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm29
1 files changed, 15 insertions, 14 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index d5620691c3..2e719d1772 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -8988,25 +8988,26 @@ according to the standard set by PasteDeploy")
(define-public python-hupper
(package
(name "python-hupper")
- (version "1.10.3")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "hupper" version))
- (sha256
- (base32
- "1nbc648d110jx6ziji980cdmzsd14p8fqrcarsdvr1vm5jvm2vyd"))))
- (build-system python-build-system)
- (arguments '(#:test-target "pytest"))
+ (version "1.12.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "hupper" version))
+ (sha256
+ (base32 "1srj7sqxdgxr0nnhh9lw8jmp64chwgg8iwfm9b4g9v7l1wbm9gq6"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ ;; RuntimeError: timeout waiting for change to
+ ;; file=/tmp/guix-build-python-hupper-1.12.1.drv-0/tmpm9n4697p
+ #:test-flags #~(list "--ignore=tests/test_it.py")))
(native-inputs
- (list python-mock
- python-pytest
+ (list python-pytest
python-pytest-cov
- python-pytest-runner
python-setuptools
- python-watchdog
python-wheel))
(propagated-inputs
- (list python-pytz))
+ (list python-watchdog))
(home-page "https://readthedocs.org/projects/hupper")
(synopsis "Integrated process monitor tracking changes to imported Python files")
(description