Merge pull request #281125 from fabaff/pydicom-bump

python311Packages.pydicom: 2.4.3 -> 2.4.4
This commit is contained in:
Nick Cao
2024-01-16 11:28:09 -05:00
committed by GitHub
@@ -2,22 +2,23 @@
, stdenv
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
, flit-core
, numpy
, pillow
, pytestCheckHook
, pythonOlder
, setuptools
}:
let
pname = "pydicom";
version = "2.4.3";
version = "2.4.4";
src = fetchFromGitHub {
owner = "pydicom";
repo = "pydicom";
rev = "refs/tags/v${version}";
hash = "sha256-PF4iA/FPxPYD8OfgWqKRndwi2vURuzh6tlEwduxs/3E=";
hash = "sha256-iJE1horEmdL7bKPn+NlZLgmtCbLZCZWQ8NjDBQPzXk8=";
};
# Pydicom needs pydicom-data to run some tests. If these files aren't downloaded
@@ -32,15 +33,19 @@ let
in
buildPythonPackage {
inherit pname version src;
disabled = pythonOlder "3.6";
pyproject = true;
format = "setuptools";
disabled = pythonOlder "3.10";
patches = [
# backport of https://github.com/pydicom/pydicom/commit/2513a20cc41743a42bdb86f4cbb4873899b7823c
./pillow-10.1.0-compat.patch
];
nativeBuildInputs = [
flit-core
];
propagatedBuildInputs = [
numpy
pillow
@@ -78,6 +83,7 @@ buildPythonPackage {
meta = with lib; {
description = "Python package for working with DICOM files";
homepage = "https://pydicom.github.io";
changelog = "https://github.com/pydicom/pydicom/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ bcdarwin ];
};