python310Packages.ldappool: add missing six dependency

This commit is contained in:
Theodore Ni 2023-07-09 16:30:46 -07:00 committed by Martin Weinelt
parent f542b15d75
commit b12b1ae9e1

View File

@ -1,5 +1,14 @@
{ lib, buildPythonPackage, fetchPypi { lib
, pbr, python-ldap, prettytable, fixtures, testresources, testtools }: , buildPythonPackage
, fetchPypi
, pbr
, python-ldap
, prettytable
, six
, fixtures
, testresources
, testtools
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "ldappool"; pname = "ldappool";
@ -20,7 +29,7 @@ buildPythonPackage rec {
nativeBuildInputs = [ pbr ]; nativeBuildInputs = [ pbr ];
propagatedBuildInputs = [ python-ldap prettytable ]; propagatedBuildInputs = [ python-ldap prettytable six ];
nativeCheckInputs = [ fixtures testresources testtools ]; nativeCheckInputs = [ fixtures testresources testtools ];