diff options
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-xyz.scm | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 60a1a9a80b..932e0c48c9 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -29215,17 +29215,9 @@ files. These files are used to translate strings in android apps.") (uri (pypi-uri "watchdog" version)) (sha256 (base32 "1rx2nyl0cyj0v4ja795cl3gi26577c5wg48syr3byz3ndkgpavm3")))) - (build-system python-build-system) + (build-system pyproject-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda* (#:key inputs outputs tests? #:allow-other-keys) - (when tests? - (add-installed-pythonpath inputs outputs) - (invoke "python" "-m" "pytest" "-k" - ;; This test failed. - "not test_kill_auto_restart"))))))) + (list #:test-flags #~(list "-k" "not test_kill_auto_restart"))) (propagated-inputs (list python-pathtools python-pyyaml)) (native-inputs |