From 8f28d94d65805d255f335383d20408609807e53a Mon Sep 17 00:00:00 2001 From: Aidan Gauland Date: Sat, 28 Jan 2023 09:21:15 +1300 Subject: [PATCH] Fix vsgan poetry dependency After a recent poetry update in nixpkgs, we need to depend upon poetry-core instead. --- plugins/vsgan/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/vsgan/default.nix b/plugins/vsgan/default.nix index e75feb5..0651f11 100644 --- a/plugins/vsgan/default.nix +++ b/plugins/vsgan/default.nix @@ -3,7 +3,7 @@ , fetchFromGitHub , vapoursynth , numpy -, poetry +, poetry-core , pytorch }: @@ -22,7 +22,7 @@ buildPythonPackage rec { propagatedBuildInputs = [ numpy - poetry + poetry-core pytorch ];