Skip to content

Commit

Permalink
vcsi: relax python deps, run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dali99 committed Jan 2, 2025
1 parent 4f8d763 commit cd90665
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pkgs/by-name/vc/vcsi/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ python3Packages.buildPythonApplication rec {

nativeBuildInputs = [ python3Packages.poetry-core ];

nativeCheckInputs = [
python3Packages.pytestCheckHook
];

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

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

pythonImportsCheck = [ "vcsi" ];

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

0 comments on commit cd90665

Please sign in to comment.