1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: sshoot: Update to 1.6.0.

* gnu/packages/vpn.scm (sshoot): Update to 1.6.0.
[arguments]: Fix path in ’patch-paths #:phase.
[native-inputs]: Remove python-wheel.

Change-Id: I3243eb6e8b37dfb1295fd070b2b070f1d843e651
This commit is contained in:
Cayetano Santos
2026-03-09 16:47:47 +01:00
parent 6861d60b87
commit 97714ba894

View File

@@ -1247,7 +1247,7 @@ DNS domain name queries.")
(define-public sshoot
(package
(name "sshoot")
(version "1.5.1")
(version "1.6.0")
(source
(origin
(method git-fetch)
@@ -1256,7 +1256,7 @@ DNS domain name queries.")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "0725p0l2gx881hsjw3nj44n4gm1kv9hirv5cd4d9yr1ba87whp3q"))))
(base32 "0xyj1ahhkcc7m27ym7ch4dwp2x43v9mfs9aiqnnnkq226rydffjl"))))
(build-system pyproject-build-system)
(arguments
(list
@@ -1264,13 +1264,12 @@ DNS domain name queries.")
#~(modify-phases %standard-phases
(add-after 'unpack 'patch-paths
(lambda* (#:key inputs #:allow-other-keys)
(substitute* "sshoot/tests/test_manager.py"
(substitute* "tests/manager_test.py"
(("/bin/sh")
(search-input-file inputs "bin/sh"))))))))
(inputs (list python-argcomplete python-prettytable python-pyyaml
python-pyxdg python-toolrack))
(native-inputs (list python-pytest python-pytest-mock python-setuptools
python-wheel))
(native-inputs (list python-pytest python-pytest-mock python-setuptools))
(home-page "https://github.com/albertodonato/sshoot")
(synopsis "VPN session manager (sshuttle)")
(description