[BROKEN] awsmfunc: unstable-2021-01-26 -> 1.3.4

Addresses #19
Aidan Gauland 2023-10-28 21:56:41 +13:00
parent 6a87dc2604
commit 17095f9856
No known key found for this signature in database
GPG Key ID: 16E68DD2D0E77C91
1 changed files with 11 additions and 16 deletions

View File

@ -1,4 +1,4 @@
{ lib, vapoursynthPlugins, buildPythonPackage, fetchgit, numpy, vapoursynth }:
{ lib, vapoursynthPlugins, buildPythonPackage, setuptools, fetchFromGitHub, numpy, vapoursynth }:
let
propagatedBinaryPlugins = with vapoursynthPlugins; [
descale
@ -9,23 +9,18 @@ let
in
buildPythonPackage rec {
pname = "awsmfunc";
version = "unstable-2021-01-26";
version = "1.3.4";
pyproject = true;
src = fetchgit {
url = "https://git.concertos.live/AHD/awsmfunc.git";
rev = "e57ad6a976d059ffcf8ae59ee986bdbefef53cd0";
sha256 = "0j2gzxcz3sy0h7r5a1dhl6xjgjd2m66mw4kfm8q2glar5b7gn0k7";
src = fetchFromGitHub {
owner = "OpusGang";
repo = pname;
rev = version;
hash = "sha256-7J7s/SdnA5/A/q4SaBfIWG+qOwHpjSrUzWkY1r63wwc=";
};
# This does not depend on vapoursynth (since this is used from within
# vapoursynth).
postPatch = ''
substituteInPlace requirements.txt \
--replace "VapourSynth>=49" "" \
--replace "rekt@https://gitlab.com/Ututu/rekt/-/archive/3da2b2f2b2d670e635cef6dcc61f19c8fe10f1fa/rekt-3da2b2f2b2d670e635cef6dcc61f19c8fe10f1fa.zip" "rekt"
'';
propagatedBuildInputs = [
setuptools
numpy
] ++ (with vapoursynthPlugins; [
rekt
@ -37,8 +32,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "A VapourSynth function collection";
homepage = "https://git.concertos.live/AHD/awsmfunc";
license = licenses.unfree; # no license
homepage = "https://github.com/OpusGang/awsmfunc";
license = licenses.mit;
maintainers = with maintainers; [ sbruder ];
platforms = platforms.all;
};