Compare commits

..

3 commits

Author SHA1 Message Date
Aidan Gauland 85f6e8abda
Run GH Workflow monthly 2023-11-19 08:58:41 +13:00
Aidan Gauland 9246452834
Add GH Workflow
GitHub Workflow to ensure all plugins build.
2023-11-19 08:58:41 +13:00
Aidan Gauland 8f28d94d65 Fix vsgan poetry dependency
After a recent poetry update in nixpkgs, we need to depend upon poetry-core instead.
2023-11-19 08:05:20 +13:00
3 changed files with 5 additions and 3 deletions

View file

@ -1,6 +1,8 @@
name: Test name: Test
on: on:
pull_request: pull_request:
schedule:
- cron: "0 0 1 * *"
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest

View file

@ -95,7 +95,7 @@ in
# pkgs.vapoursynthPlugins.rekt # pkgs.vapoursynthPlugins.rekt
# pkgs.vapoursynthPlugins.vardefunc # pkgs.vapoursynthPlugins.vardefunc
# pkgs.vapoursynthPlugins.vsTAAmbk # pkgs.vapoursynthPlugins.vsTAAmbk
# pkgs.vapoursynthPlugins.vsgan pkgs.vapoursynthPlugins.vsgan
pkgs.vapoursynthPlugins.vsutil pkgs.vapoursynthPlugins.vsutil
]) ])
]; ];

View file

@ -3,7 +3,7 @@
, fetchFromGitHub , fetchFromGitHub
, vapoursynth , vapoursynth
, numpy , numpy
, poetry , poetry-core
, pytorch , pytorch
}: }:
@ -22,7 +22,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
numpy numpy
poetry poetry-core
pytorch pytorch
]; ];