From c584377c62acda76d6c68592f4fc2a0c61de60fe Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sun, 16 May 2021 09:59:57 +0200 Subject: [PATCH] vapoursynthPlugins.debandshit: init at unstable-2020-05-28 --- default.nix | 1 + plugins/debandshit/default.nix | 49 ++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 plugins/debandshit/default.nix diff --git a/default.nix b/default.nix index c4a9266..df2728b 100644 --- a/default.nix +++ b/default.nix @@ -47,6 +47,7 @@ in acsuite = callPythonPackage ./plugins/acsuite { }; adjust = callPythonPackage ./plugins/adjust { }; + debandshit = callPythonPackage ./plugins/debandshit { }; edi_rpow2 = callPythonPackage ./plugins/edi_rpow2 { }; mt_lutspa = callPythonPackage ./plugins/mt_lutspa { }; nnedi3_resample = callPythonPackage ./plugins/nnedi3_resample { }; diff --git a/plugins/debandshit/default.nix b/plugins/debandshit/default.nix new file mode 100644 index 0000000..26ddb41 --- /dev/null +++ b/plugins/debandshit/default.nix @@ -0,0 +1,49 @@ +{ lib, vapoursynthPlugins, buildPythonPackage, fetchFromGitHub, python3, vapoursynth }: +let + propagatedBinaryPlugins = with vapoursynthPlugins; [ + f3kdb + fmtconv + #rgsf + ]; +in +buildPythonPackage rec { + pname = "debandshit"; + version = "unstable-2020-05-28"; + + src = fetchFromGitHub { + owner = "LightArrowsEXE"; + repo = pname; + rev = "d5529c97cdd7f01dcc261d6e79b2aa63b3758cbe"; + sha256 = "0gwpjglm74y6a7x9ws7is7algnwm3i0ds65nz3ki8faigx1jh52a"; + }; + + propagatedBuildInputs = (with vapoursynthPlugins; [ + fvsfunc + muvsfunc + mvsfunc + ]) ++ propagatedBinaryPlugins; + + format = "other"; + + installPhase = '' + runHook preInstall + install -D debandshit.py $out/${python3.sitePackages}/debandshit.py + runHook postInstall + ''; + + checkInputs = [ (vapoursynth.withPlugins propagatedBinaryPlugins) ]; + checkPhase = '' + runHook preCheck + PYTHONPATH=$out/${python3.sitePackages}:$PYTHONPATH + runHook postCheck + ''; + pythonImportsCheck = [ "debandshit" ]; + + meta = with lib; { + description = "Various debanding tools for VapourSynth"; + homepage = "https://github.com/LightArrowsEXE/debandshit"; + license = licenses.mit; + maintainers = with maintainers; [ sbruder ]; + platforms = platforms.all; + }; +}