aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2024-05-10 00:54:19 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-12-13 20:18:57 +0000
commitd8cf06e6bbb449f8c889655698032738aeebbdc9 (patch)
tree2e61135b64a2a370298e8abe1b7cc60a1b761273
parentfc9ef6d61a8f0ba731c0db5db4027530a2fa243a (diff)
downloadguix-d8cf06e6bbb449f8c889655698032738aeebbdc9.tar.gz
guix-d8cf06e6bbb449f8c889655698032738aeebbdc9.zip
gnu: python-multidict: Move to pyproject-build-system.
* gnu/packages/python-xyz.scm (python-multidict): [build-system]: Move to pyproject-build-system. [arguments] Remove undeed field. Change-Id: I916b36e6c4ac25dfc32b5813ad67cf4e6c134d36 Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r--gnu/packages/python-xyz.scm9
1 files changed, 1 insertions, 8 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index dcfbb5db53..791a55a0ee 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -10226,14 +10226,7 @@ e.g. copy examples, fetch data, etc.")
(sha256
(base32
"1kjrxav572j45xvr1iy60zb2g8zqvrinzdkl4ax36js4vczckl8d"))))
- (build-system python-build-system)
- (arguments
- '(#:phases (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (if tests?
- (invoke "pytest" "-vv")
- (format #t "test suite not run~%")))))))
+ (build-system pyproject-build-system)
(native-inputs
(list python-pytest python-pytest-cov))
(home-page "https://github.com/aio-libs/multidict/")