mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
python310Packages.ldappool: add missing six dependency
This commit is contained in:
parent
f542b15d75
commit
b12b1ae9e1
@ -1,5 +1,14 @@
|
||||
{ lib, buildPythonPackage, fetchPypi
|
||||
, pbr, python-ldap, prettytable, fixtures, testresources, testtools }:
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pbr
|
||||
, python-ldap
|
||||
, prettytable
|
||||
, six
|
||||
, fixtures
|
||||
, testresources
|
||||
, testtools
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ldappool";
|
||||
@ -20,7 +29,7 @@ buildPythonPackage rec {
|
||||
|
||||
nativeBuildInputs = [ pbr ];
|
||||
|
||||
propagatedBuildInputs = [ python-ldap prettytable ];
|
||||
propagatedBuildInputs = [ python-ldap prettytable six ];
|
||||
|
||||
nativeCheckInputs = [ fixtures testresources testtools ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user