gnu: shadowsocks: Switch to pyproject.

* gnu/packages/networking.scm (shadowsocks)
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-pytest, python-setuptools, python-wheel.

Change-Id: Ib77b99ab115837928d4bbb9ff7de944e8244763f
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves 2025-07-30 09:43:16 +02:00 committed by Sharlatan Hellseher
parent ce62e82769
commit e8e7b3ef58
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -98,6 +98,7 @@
#:use-module (guix build-system go)
#:use-module (guix build-system meson)
#:use-module (guix build-system perl)
#:use-module (guix build-system pyproject)
#:use-module (guix build-system python)
#:use-module (guix build-system qt)
#:use-module (guix build-system trivial)
@ -173,6 +174,7 @@
#:use-module (gnu packages protobuf)
#:use-module (gnu packages pulseaudio)
#:use-module (gnu packages python)
#:use-module (gnu packages python-build)
#:use-module (gnu packages python-check)
#:use-module (gnu packages python-crypto)
#:use-module (gnu packages python-web)
@ -3621,7 +3623,7 @@ asynchronous model using a modern C++ approach.")
(sha256
(base32 "02mp5905nz02d7amb4zc77rcrkxmvy8mf5rci7mvy58g24lvbw25"))
(file-name (git-file-name name version))))
(build-system python-build-system)
(build-system pyproject-build-system)
(arguments
(list
;; XXX: Package is deprecated, but it might be a good thing to try and
@ -3641,6 +3643,8 @@ asynchronous model using a modern C++ approach.")
(("collections\\.MutableMapping")
"collections.abc.MutableMapping")))))))
(inputs (list openssl))
(native-inputs
(list python-pytest python-setuptools python-wheel))
(home-page "https://github.com/shadowsocks/shadowsocks")
(synopsis "Fast tunnel proxy that helps you bypass firewalls")
(description