summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2024-05-10 00:53:31 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2024-05-23 22:46:45 +0200
commit1501275880043faaeb1298b9fe2aa0f49809d90d (patch)
tree8553bf50de7e44e8b1fd12e00a98e24376282bbc
parented19446d78ae765ef2d3d82334e1132500762ff5 (diff)
gnu: python-cbor2: Move to pyproject-build-system.
* gnu/packages/python-web.scm (python-cbor2): [build-system]: Move to pyproject-build-system. [arguments]: Remove uneeded field. Change-Id: I2e27fa48950aa9d10e140bfbdc12df3d22661282 Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r--gnu/packages/python-web.scm10
1 files changed, 1 insertions, 9 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 36d7b98727..265396a644 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -1000,15 +1000,7 @@ to the OVHcloud APIs.")
(uri (pypi-uri "cbor2" version))
(sha256
(base32 "15y78xcc3zkmvj1mdzz8gyhf3apbl91073kwhzbjk5abc1civwlw"))))
- (build-system python-build-system)
- (arguments
- (list
- #:phases
- #~(modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "pytest" "-vv")))))))
+ (build-system pyproject-build-system)
(native-inputs (list python-pytest python-pytest-cov python-setuptools-scm))
(home-page "https://github.com/agronholm/cbor2")
(synopsis "Concise Binary Object Representation (CBOR) (de)serializer")