mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 04:45:39 +00:00
Merge pull request #119616 from LeSuisse/pyvmomi-7.0.1
python3Packages.pyvmomi: fix the build
This commit is contained in:
commit
f0efbe21f9
@ -1,4 +1,4 @@
|
|||||||
{ lib, buildPythonPackage, fetchFromGitHub, requests }:
|
{ lib, buildPythonPackage, fetchFromGitHub, requests, six }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pyvmomi";
|
pname = "pyvmomi";
|
||||||
@ -14,7 +14,7 @@ buildPythonPackage rec {
|
|||||||
# requires old version of vcrpy
|
# requires old version of vcrpy
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
propagatedBuildInputs = [ requests ];
|
propagatedBuildInputs = [ requests six ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python SDK for the VMware vSphere API that allows you to manage ESX, ESXi, and vCenter";
|
description = "Python SDK for the VMware vSphere API that allows you to manage ESX, ESXi, and vCenter";
|
||||||
|
Loading…
Reference in New Issue
Block a user