nixpkgs/pkgs/development/python-modules/ldappool/default.nix

26 lines
629 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi
2018-03-02 01:19:38 +00:00
, pbr, ldap, fixtures, testresources, testtools }:
buildPythonPackage rec {
name = "ldappool-${version}";
2018-11-04 10:35:04 +00:00
version = "2.3.1";
src = fetchPypi {
pname = "ldappool";
inherit version;
2018-11-04 10:35:04 +00:00
sha256 = "3ef502e65b396a917dbee9035db5d5a5aae6a94897dac2bc253c8257ca1c31a6";
};
2018-03-02 01:19:38 +00:00
nativeBuildInputs = [ pbr ];
propagatedBuildInputs = [ ldap ];
checkInputs = [ fixtures testresources testtools ];
meta = with lib; {
2018-03-02 01:19:38 +00:00
description = "A simple connector pool for python-ldap";
homepage = https://git.openstack.org/cgit/openstack/ldappool;
license = licenses.mpl20;
};
}