Merge pull request #119616 from LeSuisse/pyvmomi-7.0.1

python3Packages.pyvmomi: fix the build
This commit is contained in:
Sandro 2021-04-16 17:38:10 +02:00 committed by GitHub
commit f0efbe21f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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";