about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyvmomi
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2021-04-16 15:14:11 +0200
committerThomas Gerbet <thomas@gerbet.me>2021-04-16 15:14:11 +0200
commitd4827fcb1d54743cc3945486a116efda54cddd55 (patch)
tree6b583745084ef4ad5ad8a420c24ab46393e27b23 /pkgs/development/python-modules/pyvmomi
parent18632f10aed181cdb2c37d23057e6c3dffc8f0c4 (diff)
python3Packages.pyvmomi: fix the build
Diffstat (limited to 'pkgs/development/python-modules/pyvmomi')
-rw-r--r--pkgs/development/python-modules/pyvmomi/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pyvmomi/default.nix b/pkgs/development/python-modules/pyvmomi/default.nix
index 8f8ca6f1d7ac1..b6a775327f429 100644
--- a/pkgs/development/python-modules/pyvmomi/default.nix
+++ b/pkgs/development/python-modules/pyvmomi/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildPythonPackage, fetchFromGitHub, requests }:
+{ lib, buildPythonPackage, fetchFromGitHub, requests, six }:
 
 buildPythonPackage rec {
   pname = "pyvmomi";
@@ -14,7 +14,7 @@ buildPythonPackage rec {
   # requires old version of vcrpy
   doCheck = false;
 
-  propagatedBuildInputs = [ requests ];
+  propagatedBuildInputs = [ requests six ];
 
   meta = with lib; {
     description = "Python SDK for the VMware vSphere API that allows you to manage ESX, ESXi, and vCenter";