Unverified Commit 97684f54 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

Merge pull request #280775 from r-ryantm/auto-update/python311Packages.bloodhound-py

python311Packages.bloodhound-py: 1.7.1 -> 1.7.2
parents cabbeeb4 e99e2ace
Loading
Loading
Loading
Loading
+24 −8
Original line number Diff line number Diff line
{ 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 ];