depot/third_party/nixpkgs/pkgs/development/python-modules/ldappool/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

56 lines
874 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 = "A simple connector pool for python-ldap";
homepage = "https://opendev.org/openstack/ldappool/";
license = with licenses; [
mpl11
lgpl21Plus
gpl2Plus
];
};
}