Merge pull request #214718 from fabaff/certipy-bump

certipy: 2.0.9 -> 4.3.0
This commit is contained in:
Nick Cao
2023-02-05 20:25:05 +08:00
committed by GitHub
+6 -3
View File
@@ -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 ];
};