mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-04 16:22:29 +01:00
Simon Bruder
3ac96a0fb0
This is done to mirror what is done in nixpkgs (https://github.com/NixOS/nixpkgs/pull/170414).
42 lines
1.2 KiB
Nix
42 lines
1.2 KiB
Nix
{ lib, buildPythonPackage, fetchFromGitLab, vapoursynthPlugins, vapoursynth }:
|
||
|
||
buildPythonPackage rec {
|
||
pname = "rekt";
|
||
version = "39";
|
||
|
||
src = fetchFromGitLab {
|
||
owner = "Ututu";
|
||
repo = pname;
|
||
rev = "153863e07779219c48cf1223bfdba86c47bc43be";
|
||
sha256 = "1h83dqwn71pfqxx8hppbqc7i9mh0a2pbpydsm8jvf538z9nr2sl9";
|
||
};
|
||
|
||
# This does not depend on vapoursynth (since this is used from within
|
||
# vapoursynth).
|
||
postPatch = ''
|
||
substituteInPlace setup.py \
|
||
--replace "install_requires=['vapoursynth', " "install_requires=["
|
||
'';
|
||
|
||
propagatedBuildInputs = with vapoursynthPlugins; [
|
||
vsutil
|
||
];
|
||
|
||
checkInputs = [ vapoursynth ];
|
||
checkPhase = ''
|
||
runHook preCheck
|
||
# This overrides the default setuptools checkPhase that detects tests (that
|
||
# don’t work) even though this package doesn’t have tests.
|
||
runHook postCheck
|
||
'';
|
||
pythonImportsCheck = [ "rekt" ];
|
||
|
||
meta = with lib; {
|
||
description = "VapourSynth wrapper for Cropping and Stacking clips";
|
||
homepage = "https://gitlab.com/Ututu/rekt";
|
||
license = licenses.unfree; # no license
|
||
maintainers = with maintainers; [ sbruder ];
|
||
platforms = platforms.all;
|
||
};
|
||
}
|