guix_mirror_bot pushed a commit to branch next-master
in repository guix.

commit 4a9402f023ab678988af55787ef60eac7aeaada8
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Jan 5 18:28:25 2026 +0100

    gnu: pass-rotate: Switch to pyproject.
    
    * gnu/packages/password-utils.scm (pass-rotate):
    [source, home-page]: Update repository url.
    [build-system]: Switch to pyproject-build-system.
    [arguments]<#:tests?>: Disable them.
    [native-inputs]: Add python-setuptools.
    
    Change-Id: I0216f6f8edd2b0c69b43a99a678b4f42886e50c2
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/password-utils.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index ec1f55ba7d..3b4a3c697f 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -1729,17 +1729,18 @@ to use a different password manager.")
       (origin
         (method git-fetch)
         (uri (git-reference
-               (url "https://github.com/ddevault/pass-rotate";)
+               (url "https://git.sr.ht/~sircmpwn/pass-rotate";)
                (commit version)))
         (file-name (git-file-name name version))
         (sha256
-         (base32
-          "1m067vvdlc85csbpkp8aw4s3ags7q8s3jszrr32kmj9qhk5c254f"))))
-    (build-system python-build-system)
+         (base32 "1m067vvdlc85csbpkp8aw4s3ags7q8s3jszrr32kmj9qhk5c254f"))))
+    (build-system pyproject-build-system)
+    (arguments (list #:tests? #f))      ; No tests.
+    (native-inputs (list python-setuptools))
     (inputs
      (list python-beautifulsoup4 python-docopt python-html5lib
            python-requests))
-    (home-page "https://github.com/ddevault/pass-rotate";)
+    (home-page "https://git.sr.ht/~sircmpwn/pass-rotate";)
     (synopsis "Rotate password on online services")
     (description "pass-rotate is a command line utility and python library for
 rotating passwords on various web services.  It makes it easier to rotate your

Reply via email to