Commit cc8fbf8b authored by Sarah Clark's avatar Sarah Clark
Browse files

python3Packages.bloodyad: cleanup

parent ac88b6a3
Loading
Loading
Loading
Loading
+14 −12
Original line number Diff line number Diff line
{
  lib,
  asn1crypto,
  buildPythonPackage,
  certipy,
  cryptography,
  dnspython,
  fetchFromGitHub,

  # build-system
  hatchling,

  # dependencies
  asn1crypto,
  cryptography,
  dnspython,
  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 ];
  };
}