From 103595d86844c419840a4d68c9d0b6b82224f331 Mon Sep 17 00:00:00 2001 From: jgart Date: Tue, 23 Jul 2024 19:09:43 -0500 Subject: 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(-) (limited to 'gnu/packages/vpn.scm') 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 @@ (define-public tinc (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 @@ (define-public sshuttle ;; For tests only. python-flake8 python-mock + python-poetry-core python-pytest-cov python-pytest-runner)) (home-page "https://github.com/sshuttle/sshuttle") -- cgit v1.2.3