54 lines
954 B
Nix
54 lines
954 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
lxml,
|
|
requests,
|
|
six,
|
|
pyopenssl,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyvmomi";
|
|
version = "9.0.0.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vmware";
|
|
repo = "pyvmomi";
|
|
tag = "v${version}";
|
|
hash = "sha256-4r0UtLR1dhhNQ+Lx12JiEozDAjMxPly+RR0LWRg/A4E=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
requests
|
|
six
|
|
];
|
|
|
|
optional-dependencies = {
|
|
sso = [
|
|
lxml
|
|
pyopenssl
|
|
];
|
|
};
|
|
|
|
# Requires old version of vcrpy
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"pyVim"
|
|
"pyVmomi"
|
|
];
|
|
|
|
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";
|
|
changelog = "https://github.com/vmware/pyvmomi/releases/tag/${src.tag}";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|