vapoursynthPlugins.debandshit: init at unstable-2020-05-28

pull/2/head
Simon Bruder 2021-05-16 09:59:57 +02:00 committed by Tadeo Kondrak
parent bb7244d361
commit c584377c62
2 changed files with 50 additions and 0 deletions

View File

@ -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 { };

View File

@ -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;
};
}