Skip to content

Commit

Permalink
Merge pull request #241760 from fabaff/lil-pwny
Browse files Browse the repository at this point in the history
lil-pwny: init at 2.0.0
  • Loading branch information
figsoda authored Jul 5, 2023
2 parents 098659c + 87dfe93 commit 30a8e2f
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
32 changes: 32 additions & 0 deletions pkgs/tools/security/lil-pwny/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2860,6 +2860,8 @@ with pkgs;

lifecycled = callPackage ../tools/misc/lifecycled { };

lil-pwny = callPackage ../tools/security/lil-pwny { };

lilo = callPackage ../tools/misc/lilo { };

logseq = callPackage ../applications/misc/logseq { };
Expand Down

0 comments on commit 30a8e2f

Please sign in to comment.