1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

python3Packages.pyvmomi: fix the build

This commit is contained in:
Thomas Gerbet 2021-04-16 15:14:11 +02:00
parent 18632f10ae
commit d4827fcb1d

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