Skip to content

Commit

Permalink
Merge pull request #280775 from r-ryantm/auto-update/python311Package…
Browse files Browse the repository at this point in the history
…s.bloodhound-py

python311Packages.bloodhound-py: 1.7.1 -> 1.7.2
  • Loading branch information
natsukium committed Jan 14, 2024
2 parents cabbeeb + e99e2ac commit 97684f5
Showing 1 changed file with 24 additions and 8 deletions.
32 changes: 24 additions & 8 deletions pkgs/development/python-modules/bloodhound-py/default.nix
Original file line number Diff line number Diff line change
@@ -1,28 +1,44 @@
{ lib
, buildPythonPackage
, dnspython
, fetchPypi
, python3
, impacket
, ldap3
, pycryptodome
, setuptools
}:
python3.pkgs.buildPythonPackage rec {

buildPythonPackage rec {
pname = "bloodhound-py";
version = "1.7.1";
version = "1.7.2";
pyproject = true;

src = fetchPypi {
inherit version;
pname = "bloodhound";
hash = "sha256-BryByUo9FCSrrJgXoXoVPBjpmh32I0xRoeKBsYj8nSE=";
hash = "sha256-USZU19dLppoq19+JMFtiojyJk6bj96nP2JQDq7JFkHM=";
};

propagatedBuildInputs = with python3.pkgs; [
nativeBuildInputs = [
setuptools
];

propagatedBuildInputs = [
dnspython
impacket
ldap3
dnspython
pycryptodome
];

# the package has no tests
# Module has no tests
doCheck = false;

pythonImportsCheck = [
"bloodhound"
];

meta = with lib; {
description = "Python based ingestor for BloodHound, based on Impacket.";
description = "Python based ingestor for BloodHound, based on Impacket";
homepage = "https://github.com/dirkjanm/BloodHound.py";
license = licenses.mit;
maintainers = with maintainers; [ exploitoverload ];
Expand Down

0 comments on commit 97684f5

Please sign in to comment.