mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
32 lines
773 B
Nix
32 lines
773 B
Nix
{ lib
|
|
, python3Packages
|
|
, enableOCR ? false
|
|
, qemu_pkg ? qemu_test
|
|
, coreutils
|
|
, imagemagick_light
|
|
, libtiff
|
|
, netpbm
|
|
, qemu_test
|
|
, socat
|
|
, tesseract4
|
|
, vde2
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "nixos-test-driver";
|
|
version = "1.0";
|
|
src = ./.;
|
|
|
|
propagatedBuildInputs = [ coreutils netpbm python3Packages.colorama python3Packages.ptpython qemu_pkg socat vde2 ]
|
|
++ (lib.optionals enableOCR [ imagemagick_light tesseract4 ]);
|
|
|
|
doCheck = true;
|
|
checkInputs = with python3Packages; [ mypy pylint black ];
|
|
checkPhase = ''
|
|
mypy --disallow-untyped-defs \
|
|
--no-implicit-optional \
|
|
--ignore-missing-imports ${src}/test_driver
|
|
pylint --errors-only ${src}/test_driver
|
|
black --check --diff ${src}/test_driver
|
|
'';
|
|
}
|