about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/bloodhound-py/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/security/bloodhound-py/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/security/bloodhound-py/default.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/nixpkgs/pkgs/tools/security/bloodhound-py/default.nix b/nixpkgs/pkgs/tools/security/bloodhound-py/default.nix
deleted file mode 100644
index 197be429bee9..000000000000
--- a/nixpkgs/pkgs/tools/security/bloodhound-py/default.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ lib
-, fetchPypi
-, python3
-}:
-
-python3.pkgs.buildPythonApplication rec {
-  pname = "bloodhound-py";
-  version = "1.6.1";
-
-  src = fetchPypi {
-    inherit version;
-    pname = "bloodhound";
-    hash = "sha256-SRP74I5euKJErnSkm6OSdAwznv/ZQeEtNG4XofnIEec=";
-  };
-
-  propagatedBuildInputs = with python3.pkgs; [
-    impacket
-    ldap3
-    dnspython
-  ];
-
-  # the package has no tests
-  doCheck = false;
-
-  meta = with lib; {
-    description = "Ingestor for BloodHound";
-    homepage = "https://github.com/fox-it/BloodHound.py";
-    license = licenses.mit;
-    maintainers = with maintainers; [ exploitoverload ];
-  };
-}