nixpkgs/pkgs/applications/misc/sigal/default.nix
2018-01-12 11:29:13 +01:00

34 lines
767 B
Nix

{ lib, buildPythonApplication, fetchurl, pythonPackages }:
buildPythonApplication rec {
version = "1.0.1";
name = "sigal-${version}";
src = fetchurl {
url = "mirror://pypi/s/sigal/${name}.tar.gz";
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 ];
};
}