Files
nixpkgs/pkgs/development/python-modules/dicomweb-client/default.nix
T
Martin Weinelt a40e676544 python3Packages.dicomweb-client: 0.59.3 -> 0.60.1
https://github.com/ImagingDataCommons/dicomweb-client/releases/tag/v0.60.1

This commit was automatically generated using update-python-libraries.
2025-08-09 18:59:03 +02:00

56 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
pytestCheckHook,
pytest-localserver,
numpy,
pillow,
pydicom,
requests,
retrying,
}:
buildPythonPackage rec {
pname = "dicomweb-client";
version = "0.60.1";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "ImagingDataCommons";
repo = "dicomweb-client";
tag = "v${version}";
hash = "sha256-ZxeZiCw8I5+Bf266PQ6WQA8mBRC7K3/kZrmuW4l6kQU=";
};
build-system = [ setuptools ];
dependencies = [
numpy
pillow
pydicom
requests
retrying
];
nativeCheckInputs = [
pytestCheckHook
pytest-localserver
];
pythonImportsCheck = [ "dicomweb_client" ];
meta = with lib; {
description = "Python client for DICOMweb RESTful services";
homepage = "https://dicomweb-client.readthedocs.io";
changelog = "https://github.com/ImagingDataCommons/dicomweb-client/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ bcdarwin ];
mainProgram = "dicomweb_client";
};
}