Fix vsgan poetry dependency

After a recent poetry update in nixpkgs, we need to depend upon poetry-core instead.
pull/20/head
Aidan Gauland 2023-01-28 09:21:15 +13:00 committed by Aidan Gauland
parent 9413472ea0
commit 8f28d94d65
1 changed files with 2 additions and 2 deletions

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
]; ];