diff --git a/pkgs/development/python-modules/pandoc-latex-environment/default.nix b/pkgs/development/python-modules/pandoc-latex-environment/default.nix index ec5066c1a2d8..6ccf7dd09ce6 100644 --- a/pkgs/development/python-modules/pandoc-latex-environment/default.nix +++ b/pkgs/development/python-modules/pandoc-latex-environment/default.nix @@ -2,11 +2,11 @@ lib, buildPythonPackage, fetchFromGitHub, - poetry-core, - poetry-dynamic-versioning, panflute, pytestCheckHook, pandoc, + hatchling, + hatch-vcs, }: buildPythonPackage rec { @@ -22,9 +22,10 @@ buildPythonPackage rec { }; build-system = [ - poetry-core - poetry-dynamic-versioning + hatchling + hatch-vcs ]; + dependencies = [ panflute ]; pythonImportsCheck = [ "pandoc_latex_environment" ];