Unverified Commit 81bd5332 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #214718 from fabaff/certipy-bump

certipy: 2.0.9 -> 4.3.0 
parents 1adf6753 1a184f4b
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -5,13 +5,14 @@

python3.pkgs.buildPythonApplication rec {
  pname = "certipy";
  version = "2.0.9";
  version = "4.3.0";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "ly4k";
    repo = "Certipy";
    rev = version;
    hash = "sha256-84nGRKZ0UlMDAZ1Wo5Hgy9XSAyEh0Tio9+3OZVFZG5k=";
    rev = "refs/tags/${version}";
    hash = "sha256-vwlWAbA4ExYAPRInhEsjRCNuL2wqMhAmYKO78Vi4OGo=";
  };

  propagatedBuildInputs = with python3.pkgs; [
@@ -22,6 +23,7 @@ python3.pkgs.buildPythonApplication rec {
    ldap3
    pyasn1
    pycryptodome
    requests_ntlm
  ];

  # Project has no tests
@@ -34,6 +36,7 @@ python3.pkgs.buildPythonApplication rec {
  meta = with lib; {
    description = "Tool to enumerate and abuse misconfigurations in Active Directory Certificate Services";
    homepage = "https://github.com/ly4k/Certipy";
    changelog = "https://github.com/ly4k/Certipy/releases/tag/${version}";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };