From 5dcea27f9c798948673d6fabf4255a46ecfbeabd Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Wed, 5 Nov 2025 08:36:58 +0000 Subject: [PATCH] python3Packages.markitdown: relax magika dependency --- pkgs/development/python-modules/markitdown/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/markitdown/default.nix b/pkgs/development/python-modules/markitdown/default.nix index 90b62a28ba0c..38fb386fb8af 100644 --- a/pkgs/development/python-modules/markitdown/default.nix +++ b/pkgs/development/python-modules/markitdown/default.nix @@ -44,6 +44,9 @@ buildPythonPackage rec { build-system = [ hatchling ]; + pythonRelaxDeps = [ + "magika" + ]; dependencies = [ beautifulsoup4 defusedxml @@ -85,6 +88,7 @@ buildPythonPackage rec { meta = { description = "Python tool for converting files and office documents to Markdown"; homepage = "https://github.com/microsoft/markitdown"; + changelog = "https://github.com/microsoft/markitdown/releases/tag/${src.tag}"; license = lib.licenses.mit; maintainers = [ ]; };