Merge pull request #33776 from matthiasbeyer/update-sigal

Update sigal

authored by Jörg Thalheim and committed by GitHub 1334e841 97031881

+37 -23
+33
pkgs/applications/misc/sigal/default.nix
··· 1 + { lib, buildPythonApplication, fetchPypi, pythonPackages }: 2 + 3 + buildPythonApplication rec { 4 + version = "1.3.0"; 5 + pname = "sigal"; 6 + 7 + src = fetchPypi { 8 + inherit version pname; 9 + sha256 = "0ycyrap4rc0yrjagi5c5fs5gpw9whvkli656syfpj99dq1q9q1d0"; 10 + }; 11 + 12 + buildInputs = with pythonPackages; [ pytest ]; 13 + propagatedBuildInputs = with pythonPackages; [ 14 + jinja2 15 + markdown 16 + pillow 17 + pilkit 18 + clint 19 + click 20 + blinker 21 + ]; 22 + 23 + # No tests included 24 + doCheck = false; 25 + 26 + meta = with lib; { 27 + description = "Yet another simple static gallery generator"; 28 + homepage = http://sigal.saimon.org/en/latest/index.html; 29 + license = licenses.mit; 30 + maintainers = with maintainers; [ domenkozar matthiasbeyer ]; 31 + }; 32 + } 33 +
+4
pkgs/top-level/all-packages.nix
··· 4519 4519 4520 4520 siege = callPackage ../tools/networking/siege {}; 4521 4521 4522 + sigal = callPackage ../applications/misc/sigal { 4523 + inherit (pythonPackages) buildPythonApplication fetchPypi; 4524 + }; 4525 + 4522 4526 sigil = libsForQt56.callPackage ../applications/editors/sigil { }; 4523 4527 4524 4528 signal-desktop = callPackage ../applications/networking/instant-messengers/signal-desktop { };
-23
pkgs/top-level/python-packages.nix
··· 16273 16273 }; 16274 16274 }; 16275 16275 16276 - sigal = buildPythonPackage rec { 16277 - name = "sigal-1.0.1"; 16278 - 16279 - src = pkgs.fetchurl { 16280 - url = "mirror://pypi/s/sigal/${name}.tar.gz"; 16281 - sha256 = "198g2r8bii6a0p44mlk1wg07jjv95xpfvnqhhxxziqpizc776b34"; 16282 - }; 16283 - 16284 - buildInputs = with self; [ pytest ]; 16285 - propagatedBuildInputs = with self; [ jinja2 markdown pillow pilkit clint click blinker ]; 16286 - 16287 - # No tests included 16288 - doCheck = false; 16289 - 16290 - 16291 - meta = { 16292 - description = "Yet another simple static gallery generator"; 16293 - homepage = http://sigal.saimon.org/en/latest/index.html; 16294 - license = licenses.mit; 16295 - maintainers = with maintainers; [ domenkozar ]; 16296 - }; 16297 - }; 16298 - 16299 16276 slob = buildPythonPackage rec { 16300 16277 name = "slob-unstable-2016-11-03"; 16301 16278