Merge pull request #68109 from aanderse/pyvmomi

pythonPackages.pyvmomi: init at 6.7.1.2018.12
This commit is contained in:
Aaron Andersen 2019-09-05 12:02:24 -04:00 committed by GitHub
commit 636d9043ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, buildPythonPackage, fetchFromGitHub, requests }:
buildPythonPackage rec {
pname = "pyvmomi";
version = "6.7.1.2018.12";
src = fetchFromGitHub {
owner = "vmware";
repo = pname;
rev = "v${version}";
sha256 = "1pgl95rbghidbyr8hndjzfzgb1yjchfcknlqgg3qbqvljnz9hfja";
};
# requires old version of vcrpy
doCheck = false;
propagatedBuildInputs = [ requests ];
meta = with lib; {
description = "Python SDK for the VMware vSphere API that allows you to manage ESX, ESXi, and vCenter";
homepage = "https://github.com/vmware/pyvmomi";
license = licenses.asl20;
};
}

View file

@ -4431,6 +4431,8 @@ in {
pyupdate = callPackage ../development/python-modules/pyupdate {};
pyvmomi = callPackage ../development/python-modules/pyvmomi { };
pyx = callPackage ../development/python-modules/pyx { };
mmpython = callPackage ../development/python-modules/mmpython { };