summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-05-31 08:04:45 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2023-05-31 08:04:45 +0200
commitf5dc7d877be26678a4cae381f7ba7e496e6d9bdf (patch)
tree68b8b9bd80851c6956c0ebb52f05b7935ac3f11e /pkgs/tools
parentb7a9deb5bd778e53be505ce8d10f524a86d34e07 (diff)
downloadnixpkgs-f5dc7d877be26678a4cae381f7ba7e496e6d9bdf.tar
nixpkgs-f5dc7d877be26678a4cae381f7ba7e496e6d9bdf.tar.gz
nixpkgs-f5dc7d877be26678a4cae381f7ba7e496e6d9bdf.tar.bz2
nixpkgs-f5dc7d877be26678a4cae381f7ba7e496e6d9bdf.tar.lz
nixpkgs-f5dc7d877be26678a4cae381f7ba7e496e6d9bdf.tar.xz
nixpkgs-f5dc7d877be26678a4cae381f7ba7e496e6d9bdf.tar.zst
nixpkgs-f5dc7d877be26678a4cae381f7ba7e496e6d9bdf.zip
python311Packages.certipy-ad: make it usable as module
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/security/certipy/default.nix49
1 files changed, 0 insertions, 49 deletions
diff --git a/pkgs/tools/security/certipy/default.nix b/pkgs/tools/security/certipy/default.nix
deleted file mode 100644
index f369e97a564..00000000000
--- a/pkgs/tools/security/certipy/default.nix
+++ /dev/null
@@ -1,49 +0,0 @@
-{ lib
-, fetchFromGitHub
-, python3
-}:
-
-python3.pkgs.buildPythonApplication rec {
-  pname = "certipy";
-  version = "4.4.0";
-  format = "setuptools";
-
-  src = fetchFromGitHub {
-    owner = "ly4k";
-    repo = "Certipy";
-    rev = "refs/tags/${version}";
-    hash = "sha256-llLGr9IpuXQYIN2WaOkvfE2dAZb3PMVlNmketUpuyDI=";
-  };
-
-  postPatch = ''
-    # pin does not apply because our ldap3 contains a patch to fix pyasn1 compability
-    substituteInPlace setup.py \
-      --replace "pyasn1==0.4.8" "pyasn1"
-  '';
-
-  propagatedBuildInputs = with python3.pkgs; [
-    asn1crypto
-    dnspython
-    dsinternals
-    impacket
-    ldap3
-    pyasn1
-    pycryptodome
-    requests_ntlm
-  ];
-
-  # Project has no tests
-  doCheck = false;
-
-  pythonImportsCheck = [
-    "certipy"
-  ];
-
-  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 ];
-  };
-}