Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sigal: 2.1.1 -> 2.2 #120609

Merged
merged 1 commit into from Apr 25, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
25 changes: 16 additions & 9 deletions pkgs/applications/misc/sigal/default.nix
@@ -1,33 +1,40 @@
{ lib, python3Packages, ffmpeg_3 }:
{ lib, python3Packages, ffmpeg }:

python3Packages.buildPythonApplication rec {
version = "2.1.1";
version = "2.2";
pname = "sigal";

src = python3Packages.fetchPypi {
inherit version pname;
sha256 = "0l07p457svznirz7qllgyl3qbhiisv7klhz7cbdw6417hxf9bih8";
sha256 = "sha256-49XsNdZuicsiYJZuF1UdqMA4q33Ly/Ug/Hc4ybJKmPo=";
};

disabled = !(python3Packages.pythonAtLeast "3.6");

checkInputs = with python3Packages; [ pytest ];
propagatedBuildInputs = with python3Packages; [
# install_requires
jinja2
markdown
pillow
pilkit
clint
click
blinker
natsort
setuptools_scm
# extras_require
boto
brotli
feedgenerator
zopfli
cryptography
];

makeWrapperArgs = [ "--prefix PATH : ${ffmpeg_3}/bin" ];
checkInputs = [
ffmpeg
] ++ (with python3Packages; [
pytestCheckHook
]);

# No tests included
doCheck = false;
makeWrapperArgs = [ "--prefix PATH : ${ffmpeg}/bin" ];

meta = with lib; {
description = "Yet another simple static gallery generator";
Expand Down