python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / video / vcsi / default.nix
blobf4f3043f34fb411e0ba43265ab5b56d6c6dc2580
1 { lib, python3Packages, ffmpeg }:
3 python3Packages.buildPythonApplication rec {
4   pname = "vcsi";
5   version = "7.0.13";
7   src = python3Packages.fetchPypi {
8     inherit pname version;
9     sha256 = "01qwbb2l8gwf622zzhh0kzdzw3njvsdwmndwn01i9bn4qm5cas8r";
10   };
12   propagatedBuildInputs = with python3Packages; [
13     numpy
14     pillow
15     jinja2
16     texttable
17     parsedatetime
18   ];
20   doCheck = false;
21   pythonImportsCheck = [ "vcsi" ];
23   makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ ffmpeg ]}" ];
25   meta = with lib; {
26     description = "Create video contact sheets";
27     homepage = "https://github.com/amietn/vcsi";
28     license = licenses.mit;
29     maintainers = with maintainers; [ dandellion ];
30   };