nixpkgs/pkgs/development/python-modules/pydicom/default.nix

35 lines
795 B
Nix
Raw Normal View History

2020-01-16 18:58:51 +00:00
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy27
2020-01-16 18:58:51 +00:00
, pytest
, pytestrunner
, pytestCheckHook
2020-01-16 18:58:51 +00:00
, numpy
, pillow
}:
buildPythonPackage rec {
version = "2.1.1";
2020-01-16 18:58:51 +00:00
pname = "pydicom";
disabled = isPy27;
2020-01-16 18:58:51 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "72a11086f6a277c1529a552583fde73e03256a912173f15e9bc256e5b28f28f1";
2020-01-16 18:58:51 +00:00
};
propagatedBuildInputs = [ numpy pillow ];
checkInputs = [ pytest pytestrunner pytestCheckHook ];
disabledTests = [ "test_invalid_bit_depth_raises" ];
# harmless failure; see https://github.com/pydicom/pydicom/issues/1119
2020-01-16 18:58:51 +00:00
meta = with stdenv.lib; {
homepage = "https://pydicom.github.io";
2020-01-16 18:58:51 +00:00
description = "Pure-Python package for working with DICOM files";
license = licenses.mit;
maintainers = with maintainers; [ bcdarwin ];
};
}