mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-14 13:12:25 +01:00
Simon Bruder
3ac96a0fb0
This is done to mirror what is done in nixpkgs (https://github.com/NixOS/nixpkgs/pull/170414).
39 lines
999 B
Nix
39 lines
999 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, vapoursynthPlugins, python, vapoursynth }:
|
||
|
||
buildPythonPackage rec {
|
||
pname = "mvsfunc";
|
||
version = "10";
|
||
|
||
src = fetchFromGitHub {
|
||
owner = "HomeOfVapourSynthEvolution";
|
||
repo = pname;
|
||
rev = "r${version}";
|
||
sha256 = "sha256-J68NMBE3MdAd9P0UJH32o0YwQx+7I5+13j8Jc5rbQtc=";
|
||
};
|
||
|
||
propagatedBuildInputs = with vapoursynthPlugins; [
|
||
bm3d
|
||
fmtconv
|
||
];
|
||
|
||
format = "other";
|
||
|
||
installPhase = ''
|
||
install -D mvsfunc.py $out/${python.sitePackages}/mvsfunc.py
|
||
'';
|
||
|
||
checkInputs = [ (vapoursynth.withPlugins propagatedBuildInputs) ];
|
||
checkPhase = ''
|
||
PYTHONPATH=$out/${python.sitePackages}:$PYTHONPATH
|
||
'';
|
||
pythonImportsCheck = [ "mvsfunc" ];
|
||
|
||
meta = with lib; {
|
||
description = "mawen1250’s VapourSynth functions";
|
||
homepage = "https://github.com/HomeOfVapourSynthEvolution/mvsfunc";
|
||
license = licenses.unfree; # no license
|
||
maintainers = with maintainers; [ sbruder ];
|
||
platforms = platforms.all;
|
||
};
|
||
}
|