nixpkgs/pkgs/development/python-modules/dicom-numpy/default.nix
2023-08-13 12:20:27 -04:00

44 lines
782 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 ];
};
}