nixpkgs/pkgs/applications/misc/sigal/default.nix
R. RyanTM aa018b57f2 sigal: 1.4.1 -> 2.0 (#55155)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/sigal/versions
2019-03-15 20:43:43 +01:00

35 lines
798 B
Nix

{ lib, python3Packages, ffmpeg }:
python3Packages.buildPythonApplication rec {
version = "2.0";
pname = "sigal";
src = python3Packages.fetchPypi {
inherit version pname;
sha256 = "0ff8hpihbd30xjy155ksfpypjskilqg4zmyavgvpri8jaf1qpv89";
};
checkInputs = with python3Packages; [ pytest ];
propagatedBuildInputs = with python3Packages; [
jinja2
markdown
pillow
pilkit
clint
click
blinker
];
makeWrapperArgs = [ "--prefix PATH : ${ffmpeg}/bin" ];
# 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;
maintainers = with maintainers; [ domenkozar matthiasbeyer ];
};
}