sigal: Move to applications/misc

This commit is contained in:
Matthias Beyer
2018-01-12 11:29:13 +01:00
parent ab73b0cbc9
commit 2eba34d960
3 changed files with 37 additions and 23 deletions
+33
View File
@@ -0,0 +1,33 @@
{ 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 ];
};
}