ce1c1e3093
With this patch I remove myself as a maintainer for all packages I currently maintain. This is due the fact that I will be basically off the grid from May 2018 until early 2019, as I will be on a trip through north america. I will revert this patch as soon as I'm back, as I plan to continue contributing to nixpkgs then. But as I cannot maintain anything during that time, I'd like to get this patch merged. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
33 lines
721 B
Nix
33 lines
721 B
Nix
{ lib, buildPythonApplication, fetchPypi, pythonPackages }:
|
|
|
|
buildPythonApplication rec {
|
|
version = "1.4.0";
|
|
pname = "sigal";
|
|
|
|
src = fetchPypi {
|
|
inherit version pname;
|
|
sha256 = "0da0n8jhjp2swr18zga87xc77r8c7qwqf5sp222ph9sn3yyyc35i";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|
|
|