vapoursynthPlugins.nnedi3_rpow2: init at 1.1.0

pull/2/head
Simon Bruder 2021-01-23 18:49:36 +01:00 committed by Tadeo Kondrak
parent c7950d90a7
commit 4efbbdd2e7
2 changed files with 40 additions and 0 deletions

View File

@ -47,6 +47,7 @@ in
adjust = callPythonPackage ./plugins/adjust { };
edi_rpow2 = callPythonPackage ./plugins/edi_rpow2 { };
nnedi3_rpow2 = callPythonPackage ./plugins/nnedi3_rpow2 { };
mvsfunc = callPythonPackage ./plugins/mvsfunc { };
};

View File

@ -0,0 +1,39 @@
{ lib, buildPythonPackage, fetchgit, vapoursynthPlugins, python3, vapoursynth }:
buildPythonPackage rec {
pname = "nnedi3_rpow2";
version = "1.1.0";
src = fetchgit {
url = "https://gist.github.com/4re/342624c9e1a144a696c6";
rev = "68ec4bdff1e51a3832b163198ed7ea00e1c1ab46";
sha256 = "0i112kqkrlinnkkx4rjfmzpzax07mn8gxh2bnf13ccjpbpxigrnn";
};
propagatedBuildInputs = with vapoursynthPlugins; [
fmtconv
nnedi3
nnedi3cl
znedi3
];
format = "other";
installPhase = ''
install -D nnedi3_rpow2.py $out/${python3.sitePackages}/nnedi3_rpow2.py
'';
checkInputs = [ (vapoursynth.withPlugins propagatedBuildInputs) ];
checkPhase = ''
PYTHONPATH=$out/${python3.sitePackages}:$PYTHONPATH
'';
pythonImportsCheck = [ "nnedi3_rpow2" ];
meta = with lib; {
description = "A vapoursynth plugin for enlarging images by powers of 2";
homepage = "https://gist.github.com/4re/342624c9e1a144a696c6";
license = licenses.unfree; # no license
maintainers = with maintainers; [ sbruder ];
platforms = platforms.all;
};
}