Merge pull request #120609 from dotlambda/sigal-2.2

sigal: 2.1.1 -> 2.2

authored by Doron Behar and committed by GitHub 9788d31a 9fecb15e

+16 -9
+16 -9
pkgs/applications/misc/sigal/default.nix
··· 1 - { lib, python3Packages, ffmpeg_3 }: 1 + { lib, python3Packages, ffmpeg }: 2 2 3 3 python3Packages.buildPythonApplication rec { 4 - version = "2.1.1"; 4 + version = "2.2"; 5 5 pname = "sigal"; 6 6 7 7 src = python3Packages.fetchPypi { 8 8 inherit version pname; 9 - sha256 = "0l07p457svznirz7qllgyl3qbhiisv7klhz7cbdw6417hxf9bih8"; 9 + sha256 = "sha256-49XsNdZuicsiYJZuF1UdqMA4q33Ly/Ug/Hc4ybJKmPo="; 10 10 }; 11 11 12 12 disabled = !(python3Packages.pythonAtLeast "3.6"); 13 13 14 - checkInputs = with python3Packages; [ pytest ]; 15 14 propagatedBuildInputs = with python3Packages; [ 15 + # install_requires 16 16 jinja2 17 17 markdown 18 18 pillow 19 19 pilkit 20 - clint 21 20 click 22 21 blinker 23 22 natsort 24 - setuptools_scm 23 + # extras_require 24 + boto 25 + brotli 26 + feedgenerator 27 + zopfli 28 + cryptography 25 29 ]; 26 30 27 - makeWrapperArgs = [ "--prefix PATH : ${ffmpeg_3}/bin" ]; 31 + checkInputs = [ 32 + ffmpeg 33 + ] ++ (with python3Packages; [ 34 + pytestCheckHook 35 + ]); 28 36 29 - # No tests included 30 - doCheck = false; 37 + makeWrapperArgs = [ "--prefix PATH : ${ffmpeg}/bin" ]; 31 38 32 39 meta = with lib; { 33 40 description = "Yet another simple static gallery generator";