nixpkgs/pkgs/applications/misc/sigal/default.nix
Rebecca Kelly b28ae18dd0 sigal: 2.3 -> 2.4
This fixes the broken build on nixpkgs 23.11/unstable, and we can drop the
permissions patch because it's included upstream.
2024-01-17 10:49:39 -05:00

58 lines
1 KiB
Nix

{ stdenv
, lib
, python3
, fetchPypi
, ffmpeg
}:
python3.pkgs.buildPythonApplication rec {
pname = "sigal";
version = "2.4";
pyproject = true;
src = fetchPypi {
inherit version pname;
hash = "sha256-pDTaqtqfuk7tACkyaKClTJotuVcTKli5yx1wbEM93TM=";
};
nativeBuildInputs = with python3.pkgs; [
setuptools-scm
];
propagatedBuildInputs = with python3.pkgs; [
# install_requires
jinja2
markdown
pillow
pilkit
click
blinker
natsort
# extras_require
brotli
feedgenerator
zopfli
cryptography
];
nativeCheckInputs = [
ffmpeg
] ++ (with python3.pkgs; [
pytestCheckHook
]);
disabledTests = lib.optionals stdenv.isDarwin [
"test_nonmedia_files"
];
makeWrapperArgs = [
"--prefix PATH : ${lib.makeBinPath [ ffmpeg ]}"
];
meta = with lib; {
description = "Yet another simple static gallery generator";
homepage = "http://sigal.saimon.org/";
license = licenses.mit;
maintainers = with maintainers; [ domenkozar matthiasbeyer ];
};
}