mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: python-watchdog: Simplify package.
* gnu/packages/python-xyz.scm (python-watchdog) [build-system]: Swap to pyproject-build-system. [arguments] <#:test-flags>: Move skipped test here. <#:phases>: Use standard 'check phase. Change-Id: Id813dcfb567f9769fbb4408a159519004c67b85b
This commit is contained in:
parent
18240ae446
commit
ccbf143927
1 changed files with 2 additions and 10 deletions
|
@ -29215,17 +29215,9 @@ (define-public python-watchdog
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue