nixpkgs/pkgs/applications/misc/sigal/default.nix

34 lines
735 B
Nix
Raw Normal View History

{ lib, buildPythonApplication, fetchPypi, pythonPackages }:
2018-01-12 02:29:13 -08:00
buildPythonApplication rec {
version = "1.0.1";
pname = "sigal";
2018-01-12 02:29:13 -08:00
src = fetchPypi {
inherit version pname;
2018-01-12 02:29:13 -08:00
sha256 = "198g2r8bii6a0p44mlk1wg07jjv95xpfvnqhhxxziqpizc776b34";
};
buildInputs = with pythonPackages; [ pytest ];
propagatedBuildInputs = with pythonPackages; [
jinja2
markdown
pillow
pilkit
clint
click
blinker
];
# 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 ];
};
}