me
/
guix
Archived
1
0
Fork 0

gnu: sshuttle: Update to 1.1.2.

* gnu/packages/vpn.scm (sshuttle): Update to 1.1.2.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-poetry-core.

Change-Id: I353b8e1206d5d73bf94cb46e98ec7869fbd49fcb
master
jgart 2024-07-23 19:09:43 -05:00
parent 33d1ec88af
commit 103595d868
No known key found for this signature in database
GPG Key ID: A52AA2B477B6DD35
1 changed files with 9 additions and 6 deletions

View File

@ -983,15 +983,17 @@ private network between hosts on the internet.")
(define-public sshuttle
(package
(name "sshuttle")
(version "0.78.5")
(version "1.1.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri name version))
(method git-fetch)
(uri (git-reference
(url "https://github.com/sshuttle/sshuttle")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0vp13xwrhx4m6zgsyzvai84lkq9mzkaw47j58dk0ll95kaymk2x8"))))
(build-system python-build-system)
(base32 "01hd7z7gxkc2bjxndnv5dw1x98qcakxli9k8w285iq2b7d786f7f"))))
(build-system pyproject-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
@ -1007,6 +1009,7 @@ private network between hosts on the internet.")
;; For tests only.
python-flake8
python-mock
python-poetry-core
python-pytest-cov
python-pytest-runner))
(home-page "https://github.com/sshuttle/sshuttle")