2019-01-19 16:33:10 +00:00
|
|
|
{ lib, python3Packages, ffmpeg }:
|
2018-01-12 10:29:13 +00:00
|
|
|
|
2019-01-19 16:33:10 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2018-10-14 03:46:59 +01:00
|
|
|
version = "1.4.1";
|
2018-01-12 10:31:09 +00:00
|
|
|
pname = "sigal";
|
2018-01-12 10:29:13 +00:00
|
|
|
|
2019-01-19 16:33:10 +00:00
|
|
|
src = python3Packages.fetchPypi {
|
2018-01-12 10:31:09 +00:00
|
|
|
inherit version pname;
|
2018-10-14 03:46:59 +01:00
|
|
|
sha256 = "1fg32ii26j3xpq3cryi212lx9z33qnicm1cszwv1wfpg6sr2rr61";
|
2018-01-12 10:29:13 +00:00
|
|
|
};
|
|
|
|
|
2019-01-19 16:33:10 +00:00
|
|
|
checkInputs = with python3Packages; [ pytest ];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
2018-01-12 10:29:13 +00:00
|
|
|
jinja2
|
|
|
|
markdown
|
|
|
|
pillow
|
|
|
|
pilkit
|
|
|
|
clint
|
|
|
|
click
|
|
|
|
blinker
|
|
|
|
];
|
|
|
|
|
2018-04-08 15:33:28 +01:00
|
|
|
makeWrapperArgs = [ "--prefix PATH : ${ffmpeg}/bin" ];
|
|
|
|
|
2018-01-12 10:29:13 +00:00
|
|
|
# No tests included
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Yet another simple static gallery generator";
|
|
|
|
homepage = http://sigal.saimon.org/en/latest/index.html;
|
|
|
|
license = licenses.mit;
|
2018-04-06 09:57:19 +01:00
|
|
|
maintainers = with maintainers; [ domenkozar ];
|
2018-01-12 10:29:13 +00:00
|
|
|
};
|
|
|
|
}
|