summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authormoksh <mysticmoksh@riseup.net>2025-12-21 01:00:07 +0530
committerCayetano Santos <csantosb@inventati.org>2025-12-21 17:45:05 +0100
commite235f6d978425bfce876678dfdcfe4382120d7b3 (patch)
treec1e602db3969dba086316cb2f1a9c0f2f23116c9 /gnu
parent99d7436c1f37485fea39349bd46dfcf07a4437a1 (diff)
gnu: xkcdpass: Switch to pyproject-build-system.
* gnu/packages/password-utils.scm (xkcdpass): [build-system]: Change to pyproject-build-system. [arguments] <test-backend>: Use "unittest". [native-inputs]: Add python-setuptools. Change-Id: I5d441bde3e1cce3e466e07ecfb69ef47b28b67ec Signed-off-by: Cayetano Santos <csantosb@inventati.org>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/password-utils.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index b2c42876c85..3350be8a3ef 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -2100,9 +2100,10 @@ data inside a GPG encrypted file, which we'll call a coffin.")
2100 (sha256 2100 (sha256
2101 (base32 2101 (base32
2102 "11imgiiwd9ggkw7235hsdj9xm0rpv8s46v087mgb3ad0d8v48fqf")))) 2102 "11imgiiwd9ggkw7235hsdj9xm0rpv8s46v087mgb3ad0d8v48fqf"))))
2103 (build-system python-build-system) 2103 (build-system pyproject-build-system)
2104 (arguments 2104 (arguments
2105 (list 2105 (list
2106 #:test-backend #~'unittest
2106 #:phases 2107 #:phases
2107 #~(modify-phases %standard-phases 2108 #~(modify-phases %standard-phases
2108 (add-after 'install 'install-manpage 2109 (add-after 'install 'install-manpage
@@ -2110,6 +2111,7 @@ data inside a GPG encrypted file, which we'll call a coffin.")
2110 (install-file 2111 (install-file
2111 "xkcdpass.1" 2112 "xkcdpass.1"
2112 (string-append #$output "/share/man/man1"))))))) 2113 (string-append #$output "/share/man/man1")))))))
2114 (native-inputs (list python-setuptools))
2113 (synopsis 2115 (synopsis
2114 "Generate secure multiword passwords/passphrases, inspired by XKCD") 2116 "Generate secure multiword passwords/passphrases, inspired by XKCD")
2115 (description 2117 (description