sharlatan pushed a commit to branch python-team
in repository guix.
commit 645210b9d9a593a5bfcbea9662e5f196d6526d70
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Fri May 24 20:03:25 2024 +0200
gnu: python-websockets: Adjust inputs.
* gnu/packages/python-web.scm (python-websockets): Adjust inputs.
[build-system]: Use PYPROJECT-BUILD-SYSTEM.
[native-inputs]: Add PYTHON-SETUPTOOLS and PYTHON-WHEEL.
Change-Id: I03cf0233ceb9a2767fb1086bd6a6615cdcd2e78c
---
gnu/packages/python-web.scm | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 547924cf14..11394ea83f 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -24,7 +24,7 @@
;;; Copyright © 2015, 2016 David Thompson <[email protected]>
;;; Copyright © 2017 Mark Meyer <[email protected]>
;;; Copyright © 2018 Tomáš Čech <[email protected]>
-;;; Copyright © 2018, 2019, 2021 Nicolas Goaziou <[email protected]>
+;;; Copyright © 2018, 2019, 2021, 2024 Nicolas Goaziou <[email protected]>
;;; Copyright © 2018 Mathieu Othacehe <[email protected]>
;;; Copyright © 2018, 2020, 2021, 2022, 2023 Maxim Cournoyer
<[email protected]>
;;; Copyright © 2019 Vagrant Cascadian <[email protected]>
@@ -6878,13 +6878,16 @@ files.")
(sha256
(base32
"1a587a1knjsy9zmgab9v2yncx0803pg2hfcvf7kz6vs8ixaggqmh"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
(arguments
(list #:phases
#~(modify-phases %standard-phases
(add-before 'check 'extend-test-timeout
(lambda _
(setenv "WEBSOCKETS_TESTS_TIMEOUT_FACTOR" "10"))))))
+ (native-inputs
+ (list python-setuptools
+ python-wheel))
(home-page "https://github.com/aaugustin/websockets")
(synopsis
"Python implementation of the WebSocket Protocol (RFC 6455 & 7692)")