Merge pull request #97054 from dali99/add_vcsi

vsci: init at 7.0.12
This commit is contained in:
Mario Rodas 2020-09-06 07:49:04 -05:00 committed by GitHub
commit 18bfc49f53
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 36 additions and 0 deletions

View file

@ -1873,6 +1873,12 @@
githubId = 1918;
name = "David Anderson";
};
dandellion = {
email = "daniel@dodsorf.as";
github = "dali99";
githubId = 990767;
name = "Daniel Olsen";
};
danharaj = {
email = "dan@obsidian.systems";
github = "danharaj";

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

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