libpwquality: switch to python 3

Nothing seems to use the Python bindings anyway.
This commit is contained in:
Jan Tojnar 2019-12-25 09:32:21 +01:00
parent 7e8293edcb
commit 6577ec986a
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,4 +1,4 @@
{ stdenv, lib, fetchFromGitHub, autoreconfHook, perl, cracklib, python }:
{ stdenv, lib, fetchFromGitHub, autoreconfHook, perl, cracklib, python3 }:
stdenv.mkDerivation rec {
pname = "libpwquality";
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ autoreconfHook perl ];
buildInputs = [ cracklib python ];
buildInputs = [ cracklib python3 ];
meta = with lib; {
description = "Password quality checking and random password generation library";