vcsi: init at 7.0.12

gstqt5
Daniel Olsen 2020-09-04 00:55:42 +02:00
parent 5d255c0660
commit fdefec4f3d
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ lib, python3Packages, ffmpeg }:
python3Packages.buildPythonApplication rec {
pname = "vcsi";
version = "7.0.12";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "0dks0yr2a0cpr32vrwhdrhsb4qyj7rz1yv44fjbr8z8j8p84yjx5";
};
propagatedBuildInputs = with python3Packages; [
numpy
pillow
jinja2
texttable
parsedatetime
];
makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ ffmpeg ]}" ];
meta = with lib; {
description = "Create video contact sheets";
homepage = "https://github.com/amietn/vcsi";
license = licenses.mit;
maintainers = with maintainers; [ dandellion ];
};
}

View File

@ -7619,6 +7619,8 @@ in
vbetool = callPackage ../tools/system/vbetool { };
vcsi = callPackage ../tools/video/vcsi { };
vde2 = callPackage ../tools/networking/vde2 { };
vboot_reference = callPackage ../tools/system/vboot_reference {};