From b7e39b9885cd1c8d5594290e4233d775fc34f2c7 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Fri, 7 Mar 2025 19:20:17 +0100 Subject: [PATCH] python312Packages.pandoc-latex-environment: fix build --- .../python-modules/pandoc-latex-environment/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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" ];