libpwquality: switch to python 3

Nothing seems to use the Python bindings anyway.
This commit is contained in:
Jan Tojnar
2019-12-29 11:21:09 +01:00
parent 7e8293edcb
commit 6577ec986a
@@ -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";