mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
01d4e2fe33
After making `ffmpeg` point to the latest `ffmpeg_4`, all packages that used `ffmpeg` without requiring a specific version now use ffmpeg_3 explicitly so they shouldn't change.
35 lines
804 B
Nix
35 lines
804 B
Nix
{ lib, python3Packages, ffmpeg_3 }:
|
|
|
|
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_3}/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 ];
|
|
};
|
|
}
|