python311Packages.pynetdicom: unbreak on aarch64-darwin

This commit is contained in:
Malo Bourgon 2024-06-06 11:44:30 -07:00
parent 0f3cb3b481
commit 981a03b60b

View File

@ -1,6 +1,5 @@
{ {
lib, lib,
stdenv,
buildPythonPackage, buildPythonPackage,
fetchFromGitHub, fetchFromGitHub,
poetry-core, poetry-core,
@ -88,7 +87,5 @@ buildPythonPackage rec {
changelog = "https://github.com/pydicom/pynetdicom/releases/tag/v${version}"; changelog = "https://github.com/pydicom/pynetdicom/releases/tag/v${version}";
license = with licenses; [ mit ]; license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
# Tests are not passing on Darwin/Aarch64, thus it's assumed that it doesn't work
broken = stdenv.isDarwin || stdenv.isAarch64;
}; };
} }