mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
bloodhound-py: init at 1.6.1
This commit is contained in:
parent
2b89bab306
commit
adb14254a2
31
pkgs/tools/security/bloodhound-py/default.nix
Normal file
31
pkgs/tools/security/bloodhound-py/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -348,6 +348,8 @@ with pkgs;
|
||||
|
||||
blst = callPackage ../development/libraries/blst { };
|
||||
|
||||
bloodhound-py = callPackage ../tools/security/bloodhound-py { };
|
||||
|
||||
bodyclose = callPackage ../development/tools/bodyclose { };
|
||||
|
||||
bootstrap-studio = callPackage ../development/web/bootstrap-studio { };
|
||||
|
Loading…
Reference in New Issue
Block a user