mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
fbeb94dd46
This reverts commit 29acc8339f
.
26 lines
617 B
Nix
26 lines
617 B
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
, pbr, ldap, fixtures, testresources, testtools }:
|
|
|
|
buildPythonPackage rec {
|
|
name = "ldappool-${version}";
|
|
version = "2.2.0";
|
|
|
|
src = fetchPypi {
|
|
pname = "ldappool";
|
|
inherit version;
|
|
sha256 = "1akmzf51cjfvmd0nvvm562z1w9vq45zsx6fa72kraqgsgxhnrhqz";
|
|
};
|
|
|
|
nativeBuildInputs = [ pbr ];
|
|
|
|
propagatedBuildInputs = [ ldap ];
|
|
|
|
checkInputs = [ fixtures testresources testtools ];
|
|
|
|
meta = with lib; {
|
|
description = "A simple connector pool for python-ldap";
|
|
homepage = https://git.openstack.org/cgit/openstack/ldappool;
|
|
license = licenses.mpl20;
|
|
};
|
|
}
|