python311Packages.pyvmomi: add optional-dependencies

This commit is contained in:
Fabian Affolter 2023-11-18 09:22:56 +01:00 committed by GitHub
parent bafd11be05
commit fd5f060cda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,8 +1,10 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, lxml
, requests
, six
, pyopenssl
, pythonOlder
}:
@ -25,6 +27,13 @@ buildPythonPackage rec {
six
];
passthru.optional-dependencies = {
sso = [
lxml
pyopenssl
];
};
# Requires old version of vcrpy
doCheck = false;