ngz pushed a commit to branch python-team
in repository guix.
commit 022db8c7e6a64c9b484d6534119bb281ec8557ee
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri May 10 00:53:13 2024 +0200
gnu: sshuttle: Move to pyproject-build-system.
* gnu/packages/vpn.scm (sshuttle):
[build-system]: Use pyproject-build-system.
[arguments]: Delete field.
Change-Id: I4fd3cb99b281c22200b059586080e29851a8a74c
Signed-off-by: Nicolas Goaziou <[email protected]>
---
gnu/packages/vpn.scm | 12 +-----------
1 file changed, 1 insertion(+), 11 deletions(-)
diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm
index 7823ef19eb..9da51cb561 100644
--- a/gnu/packages/vpn.scm
+++ b/gnu/packages/vpn.scm
@@ -966,17 +966,7 @@ private network between hosts on the internet.")
(sha256
(base32
"0vp13xwrhx4m6zgsyzvai84lkq9mzkaw47j58dk0ll95kaymk2x8"))))
- (build-system python-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'patch-FHS-file-names
- (lambda _
- (substitute* "sshuttle/client.py"
- (("/usr/bin/env") (which "env")))
- (substitute* "sshuttle/ssh.py"
- (("/bin/sh") "sh"))
- #t)))))
+ (build-system pyproject-build-system)
(native-inputs
(list python-setuptools-scm
;; For tests only.