jgart pushed a commit to branch master
in repository guix.

commit 103595d86844c419840a4d68c9d0b6b82224f331
Author: jgart <[email protected]>
AuthorDate: Tue Jul 23 19:09:43 2024 -0500

    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
---
 gnu/packages/vpn.scm | 15 +++++++++------
 1 file 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";)

Reply via email to