diff options
author | Marius Bakke <marius@gnu.org> | 2023-01-07 16:54:53 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2023-01-07 21:04:27 +0100 |
commit | 998c8db2a57e6cc081972d3f49217bd031b2bf4d (patch) | |
tree | 8bb58f608712c17c0d02307749cd270b6a7a8ad8 /gnu/packages/python-xyz.scm | |
parent | 73b765d64bcc81e42da0843536580d9bcedd275e (diff) | |
download | guix-998c8db2a57e6cc081972d3f49217bd031b2bf4d.tar guix-998c8db2a57e6cc081972d3f49217bd031b2bf4d.tar.gz |
gnu: python-funcy: Use pyproject-build-system.
* gnu/packages/python-xyz.scm (python-funcy)[build-system]: Change to
PYPROJECT-BUILD-SYSTEM.
[arguments]: Remove.
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 8 |
1 files changed, 1 insertions, 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") |