python3Packages.shaperglot: fix dependencies

This package was failing to build because of some missing dependencies.

Upstream added a new dependency on PyYAML in v0.4.1:
94a9b30ec0
and switched from poetry to setuptools in v0.4.2:
2c76ffa082
This commit is contained in:
Dan Callaghan 2024-03-30 13:40:51 +11:00
parent cd75d22750
commit c704cfac7b
1 changed files with 6 additions and 2 deletions

View File

@ -3,9 +3,11 @@
, fetchFromGitHub
, gflanguages
, num2words
, poetry-core
, protobuf
, pytestCheckHook
, pyyaml
, setuptools
, setuptools-scm
, strictyaml
, termcolor
, ufo2ft
@ -31,6 +33,7 @@ buildPythonPackage rec {
gflanguages
num2words
protobuf
pyyaml
strictyaml
termcolor
ufo2ft
@ -38,7 +41,8 @@ buildPythonPackage rec {
youseedee
];
nativeBuildInputs = [
poetry-core
setuptools
setuptools-scm
];
doCheck = true;