push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,97 @@
{
lib,
buildPythonPackage,
colorlog,
fetchPypi,
mock,
pyopenssl,
pytest-mock,
pytestCheckHook,
pyvmomi,
qemu,
requests,
distutils,
setuptools,
stdenv,
verboselogs,
versioneer,
}:
buildPythonPackage rec {
pname = "cot";
version = "2.2.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-9LNVNBX5DarGVvidPoLnmz11F5Mjm7FzpoO0zAzrJjU=";
};
build-system = [
setuptools
versioneer
];
propagatedBuildInputs = [
colorlog
distutils
pyvmomi
requests
verboselogs
pyopenssl
setuptools
];
nativeCheckInputs = [
mock
pytestCheckHook
pytest-mock
qemu
];
prePatch = ''
# argparse is part of the standardlib
substituteInPlace setup.py \
--replace "'argparse'," ""
rm versioneer.py
'';
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.hostPlatform.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 ];
};
}