depot/third_party/nixpkgs/pkgs/development/python-modules/ldapdomaindump/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

41 lines
819 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
dnspython,
future,
ldap3,
pythonOlder,
}:
buildPythonPackage rec {
pname = "ldapdomaindump";
version = "0.9.4";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-mdzaFwUKllSZZuU7yJ5x2mcAlNU9lUKzsNAZfQNeb1I=";
};
propagatedBuildInputs = [
dnspython
future
ldap3
];
# requires ldap server
doCheck = false;
pythonImportsCheck = [ "ldapdomaindump" ];
meta = with lib; {
description = "Active Directory information dumper via LDAP";
homepage = "https://github.com/dirkjanm/ldapdomaindump/";
changelog = "https://github.com/dirkjanm/ldapdomaindump/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}