depot/third_party/nixpkgs/pkgs/development/python-modules/pyvmomi/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

52 lines
994 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, lxml
, requests
, six
, pyopenssl
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyvmomi";
version = "8.0.2.0.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "vmware";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-Y7Zor70P4lhkAslckg/prfCmnszVMFPntWdJpfWnvIM=";
};
propagatedBuildInputs = [
requests
six
];
passthru.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/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}