guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 3691937efadd966c63d37121a9a655f892590338
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Oct 12 13:25:48 2025 +0200

    gnu: python-scp: Update to 0.15.0.
    
    * gnu/packages/python-xyz.scm (python-scp): Update to 0.15.0.
    [source]: Switch to git-fetch.
    [build-system]: Switch to pyproject-build-system.
    [native-inputs]: Add python-setuptools.
    [arguments, description, propagated-inputs]: Run guix style.
    
    Change-Id: Ic79dd2d9a2b0f01c0596b0e6fde664174ab9ee2c
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 26 ++++++++++++++------------
 1 file changed, 14 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2482773bc0..472b9e2cc2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -9613,23 +9613,25 @@ outside the standard library.")
 (define-public python-scp
   (package
     (name "python-scp")
-    (version "0.13.3")
+    (version "0.15.0")
     (source
      (origin
-       (method url-fetch)
-       (uri (pypi-uri "scp" version))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/jbardin/scp.py";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32 "1m2v09m407p097cy3xy5rxicqfzrqjwf8v5rd4qhfqkk7lllimwb"))))
-    (build-system python-build-system)
-    (arguments
-     '(#:tests? #f))                     ;tests require an SSH server
-    (propagated-inputs
-     (list python-paramiko))
+        (base32 "03mdkiwfxvi1xfsw9qjdjf0jgljs991jn29lia9fka68x1ngwnw9"))))
+    (build-system pyproject-build-system)
+    (arguments (list #:tests? #f))      ;tests require an SSH server
+    (native-inputs (list python-setuptools))
+    (propagated-inputs (list python-paramiko))
     (home-page "https://github.com/jbardin/scp.py";)
     (synopsis "SCP protocol module for Python and Paramiko")
-    (description "The scp module extends the Paramiko library to send and
-receive files via the SCP1 protocol, as implemented by the OpenSSH
-@command{scp} program.")
+    (description
+     "The scp module extends the Paramiko library to send and receive files
+via the SCP1 protocol, as implemented by the OpenSSH @command{scp} program.")
     (license license:gpl2+)))
 
 (define-public python-rst.linker

Reply via email to