python3Packages.bloodyad: cleanup

This commit is contained in:
Sarah Clark
2025-11-06 15:32:46 -08:00
parent ac88b6a3be
commit cc8fbf8b6a
@@ -1,18 +1,22 @@
{
lib,
asn1crypto,
buildPythonPackage,
certipy,
fetchFromGitHub,
# build-system
hatchling,
# dependencies
asn1crypto,
cryptography,
dnspython,
fetchFromGitHub,
hatchling,
kerbad,
badldap,
pyasn1,
pytestCheckHook,
pythonOlder,
winacl,
# test
certipy,
pytestCheckHook,
}:
buildPythonPackage rec {
@@ -20,8 +24,6 @@ buildPythonPackage rec {
version = "2.1.21";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "CravateRouge";
repo = "bloodyAD";
@@ -65,11 +67,11 @@ buildPythonPackage rec {
"test_certificate_authentications"
];
meta = with lib; {
meta = {
description = "Module for Active Directory Privilege Escalations";
homepage = "https://github.com/CravateRouge/bloodyAD";
changelog = "https://github.com/CravateRouge/bloodyAD/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}