nixpkgs/pkgs/development/python-modules/cot/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

88 lines
1.8 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, pythonOlder
, colorlog
, pyvmomi
, requests
, verboselogs
, pyopenssl
, setuptools
, mock
, pytest-mock
, pytestCheckHook
, qemu
2020-07-28 21:08:50 +00:00
}:
buildPythonPackage rec {
pname = "cot";
version = "2.2.1";
format = "setuptools";
disabled = pythonOlder "3.7";
2020-07-28 21:08:50 +00:00
src = fetchPypi {
inherit pname version;
hash = "sha256-9LNVNBX5DarGVvidPoLnmz11F5Mjm7FzpoO0zAzrJjU=";
2020-07-28 21:08:50 +00:00
};
propagatedBuildInputs = [
colorlog
pyvmomi
requests
verboselogs
pyopenssl
setuptools
];
2020-07-28 21:08:50 +00:00
checkInputs = [
mock
pytestCheckHook
pytest-mock
qemu
];
prePatch = ''
# argparse is part of the standardlib
substituteInPlace setup.py \
--replace "'argparse'," ""
'';
2020-07-28 21:08:50 +00:00
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
2020-07-28 21:08:50 +00:00
"HelperGenericTest"
"TestCOTAddDisk"
"TestCOTAddFile"
"TestCOTEditHardware"
"TestCOTEditProduct"
"TestCOTEditProperties"
"TestCOTInjectConfig"
"TestISO"
"TestOVFAPI"
"TestQCOW2"
"TestRAW"
"TestVMDKConversion"
# CLI test fails with AssertionError
"test_help"
] ++ lib.optionals stdenv.isDarwin [
"test_serial_fixup_invalid_host"
2020-07-28 21:08:50 +00:00
];
pythonImportsCheck = [
"COT"
];
2020-07-28 21:08:50 +00:00
meta = with lib; {
2020-07-28 21:08:50 +00:00
description = "Common OVF Tool";
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.
'';
homepage = "https://github.com/glennmatthews/cot";
license = licenses.mit;
maintainers = with maintainers; [ evanjs ];
};
}