about summary refs log tree commit diff
path: root/pkgs/applications/misc/sigal/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/misc/sigal/default.nix')
-rw-r--r--pkgs/applications/misc/sigal/default.nix59
1 files changed, 0 insertions, 59 deletions
diff --git a/pkgs/applications/misc/sigal/default.nix b/pkgs/applications/misc/sigal/default.nix
deleted file mode 100644
index 1e82fce07898..000000000000
--- a/pkgs/applications/misc/sigal/default.nix
+++ /dev/null
@@ -1,59 +0,0 @@
-{ stdenv
-, lib
-, python3
-, fetchPypi
-, ffmpeg
-}:
-
-python3.pkgs.buildPythonApplication rec {
-  pname = "sigal";
-  version = "2.4";
-  pyproject = true;
-
-  src = fetchPypi {
-    inherit version pname;
-    hash = "sha256-pDTaqtqfuk7tACkyaKClTJotuVcTKli5yx1wbEM93TM=";
-  };
-
-  nativeBuildInputs = with python3.pkgs; [
-    setuptools-scm
-  ];
-
-  propagatedBuildInputs = with python3.pkgs; [
-    # install_requires
-    jinja2
-    markdown
-    pillow
-    pilkit
-    click
-    blinker
-    natsort
-    # extras_require
-    brotli
-    feedgenerator
-    zopfli
-    cryptography
-  ];
-
-  nativeCheckInputs = [
-    ffmpeg
-  ] ++ (with python3.pkgs; [
-    pytestCheckHook
-  ]);
-
-  disabledTests = lib.optionals stdenv.isDarwin [
-    "test_nonmedia_files"
-  ];
-
-  makeWrapperArgs = [
-    "--prefix PATH : ${lib.makeBinPath [ ffmpeg ]}"
-  ];
-
-  meta = with lib; {
-    description = "Yet another simple static gallery generator";
-    mainProgram = "sigal";
-    homepage = "http://sigal.saimon.org/";
-    license = licenses.mit;
-    maintainers = with maintainers; [ domenkozar matthiasbeyer ];
-  };
-}