depot/third_party/nixpkgs/pkgs/development/python-modules/ldappool/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

56 lines
872 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pbr,
python-ldap,
prettytable,
six,
unittestCheckHook,
fixtures,
testresources,
testtools,
}:
buildPythonPackage rec {
pname = "ldappool";
version = "3.0.0";
pyproject = true;
src = fetchPypi {
pname = "ldappool";
inherit version;
hash = "sha256-S7WbfWsRQH9I7gGngSZ+PIupjZH0JoBqxyCGEq4Ie4Y=";
};
build-system = [
setuptools
pbr
];
dependencies = [
python-ldap
prettytable
six
];
nativeCheckInputs = [
unittestCheckHook
fixtures
testresources
testtools
];
pythonImportsCheck = [ "ldappool" ];
meta = with lib; {
description = "Simple connector pool for python-ldap";
homepage = "https://opendev.org/openstack/ldappool/";
license = with licenses; [
mpl11
lgpl21Plus
gpl2Plus
];
};
}