5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
89 lines
2 KiB
Nix
89 lines
2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
colorlog,
|
|
fetchPypi,
|
|
mock,
|
|
pyopenssl,
|
|
pytest-mock,
|
|
pytestCheckHook,
|
|
pythonAtLeast,
|
|
pyvmomi,
|
|
qemu,
|
|
requests,
|
|
setuptools,
|
|
stdenv,
|
|
verboselogs,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cot";
|
|
version = "2.2.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-9LNVNBX5DarGVvidPoLnmz11F5Mjm7FzpoO0zAzrJjU=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
colorlog
|
|
pyvmomi
|
|
requests
|
|
verboselogs
|
|
pyopenssl
|
|
setuptools
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
mock
|
|
pytestCheckHook
|
|
pytest-mock
|
|
qemu
|
|
];
|
|
|
|
prePatch = ''
|
|
# argparse is part of the standardlib
|
|
substituteInPlace setup.py \
|
|
--replace "'argparse'," ""
|
|
'';
|
|
|
|
disabledTests = [
|
|
# Many tests require network access and/or ovftool (https://code.vmware.com/web/tool/ovf)
|
|
# try enabling these tests with ovftool once/if it is added to nixpkgs
|
|
"HelperGenericTest"
|
|
"TestCOTAddDisk"
|
|
"TestCOTAddFile"
|
|
"TestCOTEditHardware"
|
|
"TestCOTEditProduct"
|
|
"TestCOTEditProperties"
|
|
"TestCOTInjectConfig"
|
|
"TestISO"
|
|
"TestOVFAPI"
|
|
"TestQCOW2"
|
|
"TestRAW"
|
|
"TestVMDKConversion"
|
|
# CLI test fails with AssertionError
|
|
"test_help"
|
|
# Failing TestCOTDeployESXi tests
|
|
"test_serial_fixup_stubbed"
|
|
"test_serial_fixup_stubbed_create"
|
|
"test_serial_fixup_stubbed_vm_not_found"
|
|
] ++ lib.optionals stdenv.isDarwin [ "test_serial_fixup_invalid_host" ];
|
|
|
|
pythonImportsCheck = [ "COT" ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/glennmatthews/cot";
|
|
description = "Common OVF Tool";
|
|
mainProgram = "cot";
|
|
longDescription = ''
|
|
COT (the Common OVF Tool) is a tool for editing Open Virtualization Format
|
|
(.ovf, .ova) virtual appliances, with a focus on virtualized network
|
|
appliances such as the Cisco CSR 1000V and Cisco IOS XRv platforms.
|
|
'';
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ evanjs ];
|
|
broken = pythonAtLeast "3.12"; # Because it requires packages removed from 3.12 onwards
|
|
};
|
|
}
|