Unverified Commit b25ec5c8 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #225094 from bcdarwin/python3-dicom-web

python310Packages.dicomweb-client: init at 0.59.1
parents 2691d910 414ea018
Loading
Loading
Loading
Loading
+51 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
, pytest-localserver
, numpy
, pillow
, pydicom
, requests
, retrying
}:

buildPythonPackage rec {
  pname = "dicomweb-client";
  version = "0.59.1";
  disabled = pythonOlder "3.6";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "ImagingDataCommons";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-h9gFCBmutTGNJ3wP2AGPfiUtA49yywUlNKiSh/x9kFE=";
  };

  propagatedBuildInputs = [
    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";
    license = licenses.mit;
    maintainers = with maintainers; [ bcdarwin ];
    mainProgram = "dicomweb_client";
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -2462,6 +2462,8 @@ self: super: with self; {

  dicom-numpy = callPackage ../development/python-modules/dicom-numpy { };

  dicomweb-client = callPackage ../development/python-modules/dicomweb-client { };

  dict2xml = callPackage ../development/python-modules/dict2xml { };

  dictdiffer = callPackage ../development/python-modules/dictdiffer { };