python311Packages.sphinx-markdown-parser: unbreak on Darwin and aarch64-linux

This commit is contained in:
Malo Bourgon 2024-06-06 11:46:05 -07:00
parent 981a03b60b
commit 0a62b686ee

View File

@ -1,6 +1,5 @@
{
lib,
stdenv,
buildPythonPackage,
commonmark,
fetchFromGitHub,
@ -16,7 +15,7 @@
yapf,
}:
buildPythonPackage rec {
buildPythonPackage {
pname = "sphinx-markdown-parser";
version = "0.2.4";
pyproject = true;
@ -62,6 +61,5 @@ buildPythonPackage rec {
homepage = "https://github.com/clayrisser/sphinx-markdown-parser";
license = licenses.mit;
maintainers = with maintainers; [ FlorianFranzen ];
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
};
}