python311Packages.pylibjpeg: unbreak on Darwin

This commit is contained in:
Malo Bourgon 2024-06-05 10:50:46 -07:00
parent 2cb7c68f1c
commit fb7858ba5d

View File

@ -1,5 +1,4 @@
{
stdenv,
lib,
buildPythonPackage,
fetchFromGitHub,
@ -13,7 +12,7 @@
}:
let
pylibjpeg-data = buildPythonPackage rec {
pylibjpeg-data = buildPythonPackage {
pname = "pylibjpeg-data";
version = "1.0.0dev0";
pyproject = true;
@ -64,8 +63,5 @@ buildPythonPackage rec {
changelog = "https://github.com/pydicom/pylibjpeg/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ bcdarwin ];
# several test failures of form
# "pydicom.errors.InvalidDicomError: File is missing DICOM File Meta Information header or the 'DICM' prefix is missing from the header. ..."
broken = stdenv.isDarwin;
};
}