11 buildPythonPackage rec {
14 disabled = pythonOlder "3.8";
18 src = fetchFromGitHub {
21 rev = "refs/tags/v${version}";
22 hash = "sha256-6l3L0YUAqedyRjlQ6K3SaAMdGK2C0AeKpJj6MyXi4RA=";
25 nativeBuildInputs = [ pythonRelaxDepsHook poetry-core ];
27 propagatedBuildInputs = [ httpx pydicom ];
33 doCheck = false; # requires orthanc server (not in Nixpkgs)
35 pythonImportsCheck = [
40 description = "Python library that wraps the Orthanc REST API";
41 homepage = "https://github.com/gacou54/pyorthanc";
42 changelog = "https://github.com/gacou54/pyorthanc/releases/tag/v${version}";
43 license = licenses.mit;
44 maintainers = with maintainers; [ bcdarwin ];