[BROKEN] rekt: 39 -> 1.0.0

Aidan Gauland 2023-11-20 07:44:07 +13:00
parent 0c36903c2e
commit 6a87dc2604
No known key found for this signature in database
GPG Key ID: 16E68DD2D0E77C91
1 changed files with 12 additions and 23 deletions

View File

@ -1,40 +1,29 @@
{ lib, buildPythonPackage, fetchFromGitLab, vapoursynthPlugins, vapoursynth }:
{ lib, buildPythonPackage, setuptools, fetchFromGitHub, vapoursynthPlugins, vapoursynth }:
buildPythonPackage rec {
pname = "rekt";
version = "39";
version = "1.0.0";
pyproject = true;
src = fetchFromGitLab {
owner = "Ututu";
src = fetchFromGitHub {
owner = "OpusGang";
repo = pname;
rev = "153863e07779219c48cf1223bfdba86c47bc43be";
sha256 = "1h83dqwn71pfqxx8hppbqc7i9mh0a2pbpydsm8jvf538z9nr2sl9";
rev = version;
sha256 = "sha256-SWu7W0DFoPLeTe4+aYQGUlaU0n63W3IB7Fdi71uqyzw=";
};
# 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
propagatedBuildInputs = [
setuptools
vapoursynthPlugins.vsutil
];
checkInputs = [ vapoursynth ];
checkPhase = ''
runHook preCheck
# This overrides the default setuptools checkPhase that detects tests (that
# dont work) even though this package doesnt 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
homepage = "https://github.com/OpusGang/rekt";
license = licenses.mit;
maintainers = with maintainers; [ sbruder ];
platforms = platforms.all;
};