sigal: 2.1.1 -> 2.2

This commit is contained in:
Robert Schütz 2021-04-25 17:03:06 +02:00
parent 632292a4db
commit 468926cba4

View File

@ -1,33 +1,40 @@
{ lib, python3Packages, ffmpeg_3 }: { lib, python3Packages, ffmpeg }:
python3Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
version = "2.1.1"; version = "2.2";
pname = "sigal"; pname = "sigal";
src = python3Packages.fetchPypi { src = python3Packages.fetchPypi {
inherit version pname; inherit version pname;
sha256 = "0l07p457svznirz7qllgyl3qbhiisv7klhz7cbdw6417hxf9bih8"; sha256 = "sha256-49XsNdZuicsiYJZuF1UdqMA4q33Ly/Ug/Hc4ybJKmPo=";
}; };
disabled = !(python3Packages.pythonAtLeast "3.6"); disabled = !(python3Packages.pythonAtLeast "3.6");
checkInputs = with python3Packages; [ pytest ];
propagatedBuildInputs = with python3Packages; [ propagatedBuildInputs = with python3Packages; [
# install_requires
jinja2 jinja2
markdown markdown
pillow pillow
pilkit pilkit
clint
click click
blinker blinker
natsort natsort
setuptools_scm # extras_require
boto
brotli
feedgenerator
zopfli
cryptography
]; ];
makeWrapperArgs = [ "--prefix PATH : ${ffmpeg_3}/bin" ]; checkInputs = [
ffmpeg
] ++ (with python3Packages; [
pytestCheckHook
]);
# No tests included makeWrapperArgs = [ "--prefix PATH : ${ffmpeg}/bin" ];
doCheck = false;
meta = with lib; { meta = with lib; {
description = "Yet another simple static gallery generator"; description = "Yet another simple static gallery generator";