lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 31 lines 714 B view raw
1{ lib, python3Packages, ffmpeg }: 2 3python3Packages.buildPythonApplication rec { 4 pname = "vcsi"; 5 version = "7.0.13"; 6 7 src = python3Packages.fetchPypi { 8 inherit pname version; 9 sha256 = "01qwbb2l8gwf622zzhh0kzdzw3njvsdwmndwn01i9bn4qm5cas8r"; 10 }; 11 12 propagatedBuildInputs = with python3Packages; [ 13 numpy 14 pillow 15 jinja2 16 texttable 17 parsedatetime 18 ]; 19 20 doCheck = false; 21 pythonImportsCheck = [ "vcsi" ]; 22 23 makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ ffmpeg ]}" ]; 24 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 }; 31}