[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/12: gnu: python-watchdog: Simplify package.
From: |
guix-commits |
Subject: |
09/12: gnu: python-watchdog: Simplify package. |
Date: |
Sun, 18 Feb 2024 07:23:17 -0500 (EST) |
sharlatan pushed a commit to branch master
in repository guix.
commit ccbf143927a0e39c2a4516d6dfdab40ebfa34ef9
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sat Feb 17 22:36:30 2024 +0000
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
---
gnu/packages/python-xyz.scm | 12 ++----------
1 file 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
- branch master updated (3cf199dbcf -> 2f1ed825af), guix-commits, 2024/02/18
- 01/12: gnu: Add python-pytest-tornado5., guix-commits, 2024/02/18
- 02/12: gnu: Add python-apscheduler., guix-commits, 2024/02/18
- 03/12: gnu: python-crontab: Enable tests., guix-commits, 2024/02/18
- 05/12: gnu: python-zeroconf: Simplify package., guix-commits, 2024/02/18
- 04/12: gnu: python-crontab: Update to 3.0.0., guix-commits, 2024/02/18
- 08/12: gnu: python-humanize: Update to 4.0.0., guix-commits, 2024/02/18
- 09/12: gnu: python-watchdog: Simplify package.,
guix-commits <=
- 10/12: gnu: python-devtools: Update to 0.12.2, fix build., guix-commits, 2024/02/18
- 11/12: gnu: python-simpervisor: Update to 1.0.0., guix-commits, 2024/02/18
- 06/12: gnu: python-xyzservices: Simplify package., guix-commits, 2024/02/18
- 07/12: gnu: python-trio-websocket: Simplify package., guix-commits, 2024/02/18
- 12/12: gnu: python-simpervisor: Enable tests., guix-commits, 2024/02/18