fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
71 lines
1.6 KiB
Nix
71 lines
1.6 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
pytestCheckHook,
|
|
flit-core,
|
|
setuptools,
|
|
numpy,
|
|
pydicom,
|
|
pylibjpeg-libjpeg,
|
|
}:
|
|
|
|
let
|
|
pylibjpeg-data = buildPythonPackage rec {
|
|
pname = "pylibjpeg-data";
|
|
version = "1.0.0dev0";
|
|
pyproject = true;
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pydicom";
|
|
repo = "pylibjpeg-data";
|
|
rev = "2ab4b8a65b070656eca2582bd23197a3d01cdccd";
|
|
hash = "sha256-cFE1XjrqyGqwHCYGRucXK+q4k7ftUIbYwBw4WwIFtEc=";
|
|
};
|
|
|
|
doCheck = false;
|
|
};
|
|
in
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pylibjpeg";
|
|
version = "2.0.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pydicom";
|
|
repo = "pylibjpeg";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-qGtrphsBBVieGS/8rdymbsjLMU/QEd7zFNAANN8bD+k=";
|
|
};
|
|
|
|
nativeBuildInputs = [ flit-core ];
|
|
|
|
propagatedBuildInputs = [ numpy ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pydicom
|
|
pylibjpeg-data
|
|
pylibjpeg-libjpeg
|
|
];
|
|
|
|
pythonImportsCheck = [ "pylibjpeg" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python framework for decoding JPEG images, with a focus on supporting Pydicom";
|
|
homepage = "https://github.com/pydicom/pylibjpeg";
|
|
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;
|
|
};
|
|
}
|