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

34 lines
721 B
Nix
Raw Normal View History

{ lib, buildPythonApplication, fetchPypi, pythonPackages }:
2018-01-12 10:29:13 +00:00
buildPythonApplication rec {
2018-02-21 13:17:20 +00:00
version = "1.4.0";
pname = "sigal";
2018-01-12 10:29:13 +00:00
src = fetchPypi {
inherit version pname;
2018-02-21 13:17:20 +00:00
sha256 = "0da0n8jhjp2swr18zga87xc77r8c7qwqf5sp222ph9sn3yyyc35i";
2018-01-12 10:29:13 +00:00
};
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 ];
2018-01-12 10:29:13 +00:00
};
}