mbakke pushed a commit to branch master
in repository guix.
commit 998c8db2a57e6cc081972d3f49217bd031b2bf4d
Author: Marius Bakke <[email protected]>
AuthorDate: Sat Jan 7 16:54:53 2023 +0100
gnu: python-funcy: Use pyproject-build-system.
* gnu/packages/python-xyz.scm (python-funcy)[build-system]: Change to
PYPROJECT-BUILD-SYSTEM.
[arguments]: Remove.
---
gnu/packages/python-xyz.scm | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 856b554114..bab4a907ac 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22128,13 +22128,7 @@ functions by partial application of operators.")
(sha256
(base32 "1s98vkjnq3zq71737hn8xa15kssvmy1sfzsll3vrlv53902418mw"))
(file-name (git-file-name name version))))
- (build-system python-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda _
- (invoke "py.test"))))))
+ (build-system pyproject-build-system)
(native-inputs
(list python-pytest python-whatever))
(home-page "https://github.com/Suor/funcy")