[BROKEN] rekt: 39 -> 1.0.0

This commit is contained in:
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

View file

@ -1,40 +1,29 @@
{ lib, buildPythonPackage, fetchFromGitLab, vapoursynthPlugins, vapoursynth }: { lib, buildPythonPackage, setuptools, fetchFromGitHub, vapoursynthPlugins, vapoursynth }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "rekt"; pname = "rekt";
version = "39"; version = "1.0.0";
pyproject = true;
src = fetchFromGitLab { src = fetchFromGitHub {
owner = "Ututu"; owner = "OpusGang";
repo = pname; repo = pname;
rev = "153863e07779219c48cf1223bfdba86c47bc43be"; rev = version;
sha256 = "1h83dqwn71pfqxx8hppbqc7i9mh0a2pbpydsm8jvf538z9nr2sl9"; sha256 = "sha256-SWu7W0DFoPLeTe4+aYQGUlaU0n63W3IB7Fdi71uqyzw=";
}; };
# This does not depend on vapoursynth (since this is used from within propagatedBuildInputs = [
# vapoursynth). setuptools
postPatch = '' vapoursynthPlugins.vsutil
substituteInPlace setup.py \
--replace "install_requires=['vapoursynth', " "install_requires=["
'';
propagatedBuildInputs = with vapoursynthPlugins; [
vsutil
]; ];
checkInputs = [ vapoursynth ]; 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" ]; pythonImportsCheck = [ "rekt" ];
meta = with lib; { meta = with lib; {
description = "VapourSynth wrapper for Cropping and Stacking clips"; description = "VapourSynth wrapper for Cropping and Stacking clips";
homepage = "https://gitlab.com/Ututu/rekt"; homepage = "https://github.com/OpusGang/rekt";
license = licenses.unfree; # no license license = licenses.mit;
maintainers = with maintainers; [ sbruder ]; maintainers = with maintainers; [ sbruder ];
platforms = platforms.all; platforms = platforms.all;
}; };