summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-12-19 12:45:00 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-19 14:13:22 +0000
commit8ad99d6ebaa64333ce9623fbf93403d25dd9d1b8 (patch)
tree92cfc23667434ccce5054ad4ed4f51160aa54d7c /gnu
parent03c688575f5bc10a5d19dea6c6b3088a51c5b316 (diff)
gnu: cpass: Switch to pyproject.
* gnu/packages/password-utils.scm (cpass): Update to 0.9.4. [build-system]: Switch to pyproject-build-system. [arguments] <tests?>: No tests. [native-inputs]: Add python-setuptools. Change-Id: Id3b9a7aa079c6804bcc171e4e6b95b82966b42a7
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/password-utils.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index d2e3b99ccf3..b2c42876c85 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -1390,9 +1390,10 @@ separately.")
1390 (sha256 1390 (sha256
1391 (base32 1391 (base32
1392 "1zp3a8mgqxn916fzj1v2yhgnl7v6s0vnd0qcghqs3qq648qmlwr5")))) 1392 "1zp3a8mgqxn916fzj1v2yhgnl7v6s0vnd0qcghqs3qq648qmlwr5"))))
1393 (build-system python-build-system) 1393 (build-system pyproject-build-system)
1394 (arguments 1394 (arguments
1395 (list #:phases 1395 (list #:tests? #f ;no tests
1396 #:phases
1396 #~(modify-phases %standard-phases 1397 #~(modify-phases %standard-phases
1397 (add-after 'unpack 'patch-pass-refs 1398 (add-after 'unpack 'patch-pass-refs
1398 (lambda* (#:key inputs #:allow-other-keys) 1399 (lambda* (#:key inputs #:allow-other-keys)
@@ -1404,6 +1405,8 @@ separately.")
1404 "'")) 1405 "'"))
1405 (("\\.password_store") 1406 (("\\.password_store")
1406 ".password-store"))))))) 1407 ".password-store")))))))
1408 (native-inputs
1409 (list python-setuptools))
1407 (inputs (list password-store)) 1410 (inputs (list password-store))
1408 (propagated-inputs (list python-urwid)) 1411 (propagated-inputs (list python-urwid))
1409 (home-page "https://github.com/OliverLew/cpass") 1412 (home-page "https://github.com/OliverLew/cpass")