fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
40 lines
779 B
Nix
40 lines
779 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
pytestCheckHook,
|
|
numpy,
|
|
pydicom,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dicom-numpy";
|
|
version = "0.6.5";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "innolitics";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-pgmREQlstr0GY2ThIWt4hbcSWmaNWgkr2gO4PSgGHqE=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
pydicom
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "dicom_numpy" ];
|
|
|
|
meta = with lib; {
|
|
description = "Read DICOM files into Numpy arrays";
|
|
homepage = "https://github.com/innolitics/dicom-numpy";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
};
|
|
}
|