Unverified Commit 30a8e2f4 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #241760 from fabaff/lil-pwny

lil-pwny: init at 2.0.0
parents 098659cc 87dfe938
Loading
Loading
Loading
Loading
+32 −0
Original line number Diff line number Diff line
{ 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 −0
Original line number Diff line number Diff line
@@ -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 { };