1{ lib, buildPythonPackage, fetchPypi, dnspython, future, ldap3 }: 2 3buildPythonPackage rec { 4 pname = "ldapdomaindump"; 5 version = "0.9.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "10cis8cllpa9qi5qil9k7521ag3921mxwg2wj9nyn0lk41rkjagc"; 10 }; 11 12 propagatedBuildInputs = [ dnspython future ldap3 ]; 13 14 # requires ldap server 15 doCheck = false; 16 pythonImportsCheck = [ "ldapdomaindump" ]; 17 18 meta = with lib; { 19 description = "Active Directory information dumper via LDAP"; 20 homepage = "https://github.com/dirkjanm/ldapdomaindump/"; 21 license = licenses.mit; 22 maintainers = with maintainers; [ SuperSandro2000 ]; 23 }; 24}