Unverified Commit 8fc42264 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

vcsi: relax python deps, run tests (#370054)

parents 10e0374c cd90665c
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
@@ -20,6 +20,10 @@ python3Packages.buildPythonApplication rec {

  nativeBuildInputs = [ python3Packages.poetry-core ];

  nativeCheckInputs = [
    python3Packages.pytestCheckHook
  ];

  propagatedBuildInputs = with python3Packages; [
    numpy
    pillow
@@ -28,7 +32,11 @@ python3Packages.buildPythonApplication rec {
    parsedatetime
  ];

  doCheck = false;
  pythonRelaxDeps = [
    "numpy"
    "pillow"
  ];

  pythonImportsCheck = [ "vcsi" ];

  makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ ffmpeg ]}" ];