From 87dfe938f866d998701d704c27304ed7b206d5ce Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 5 Jul 2023 22:29:27 +0200 Subject: lil-pwny: init at 2.0.0 --- pkgs/tools/security/lil-pwny/default.nix | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pkgs/tools/security/lil-pwny/default.nix (limited to 'pkgs/tools/security/lil-pwny') diff --git a/pkgs/tools/security/lil-pwny/default.nix b/pkgs/tools/security/lil-pwny/default.nix new file mode 100644 index 000000000000..c8251dfaa249 --- /dev/null +++ b/pkgs/tools/security/lil-pwny/default.nix @@ -0,0 +1,32 @@ +{ lib +, python3 +, fetchFromGitHub +}: + +python3.pkgs.buildPythonApplication rec { + pname = "lil-pwny"; + version = "2.0.0"; + format = "setuptools"; + + src = fetchFromGitHub { + owner = "PaperMtn"; + repo = "lil-pwny"; + rev = "refs/tags/${version}"; + hash = "sha256-EE6+PQTmvAv5EvxI9QR/dQcPby13BBk66KSc7XDNAZA="; + }; + + # Project has no test + doCheck = false; + + pythonImportsCheck = [ + "lil_pwny" + ]; + + meta = with lib; { + description = "Offline auditing of Active Directory passwords"; + homepage = "https://github.com/PaperMtn/lil-pwny"; + changelog = "https://github.com/PaperMtn/lil-pwny/blob/${version}/CHANGELOG.md"; + license = licenses.gpl3Only; + maintainers = with maintainers; [ fab ]; + }; +} -- cgit 1.4.1