diff options
author | Josselin Poiret <dev@jpoiret.xyz> | 2024-02-02 12:14:14 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:44:51 +0200 |
commit | e670dc74294ea2e7a531071fea28372fc90f9638 (patch) | |
tree | f041797c132d78123ae244fe766d213a976c3a0b | |
parent | bc78aebc637272fe515830297df1806647b5a7da (diff) |
gnu: libxcrypt: Remove python from native-inputs.
* gnu/packages/crypto.scm (libxcrypt): Remove python from native-inputs, since
python requires it for its crypt module.
Change-Id: Ic8550fb515fcb647c3bf35c2b053d080457b109d
-rw-r--r-- | gnu/packages/crypto.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index 02bc79def2..2bf58918a4 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -1667,8 +1667,10 @@ checksum tool based on the BLAKE3 cryptographic hash function.") libtool perl pkg-config - python-3 - python-passlib)) + ;; Do not run tests needing python, since Python < 3.13 needs it + ;; for its crypt module + #;python-3 + #;python-passlib)) (synopsis "Extended crypt library for descrypt, md5crypt, bcrypt, and others") (description |