diff options
author | jgart <jgart@dismail.de> | 2024-07-23 19:09:43 -0500 |
---|---|---|
committer | jgart <jgart@dismail.de> | 2024-07-24 21:46:06 -0500 |
commit | 103595d86844c419840a4d68c9d0b6b82224f331 (patch) | |
tree | 2f15b4826f9e06eb1401188bf13b83c1f92e0132 /gnu/packages/vpn.scm | |
parent | 33d1ec88af75d8c719f01e79501c67c6711b2b93 (diff) | |
download | guix-103595d86844c419840a4d68c9d0b6b82224f331.tar guix-103595d86844c419840a4d68c9d0b6b82224f331.tar.gz |
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
Diffstat (limited to 'gnu/packages/vpn.scm')
-rw-r--r-- | gnu/packages/vpn.scm | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm index e1d9657755..956a769199 100644 --- a/gnu/packages/vpn.scm +++ b/gnu/packages/vpn.scm @@ -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") |