11 buildPythonPackage rec {
14 disabled = pythonOlder "3.8";
18 src = fetchFromGitHub {
21 rev = "refs/tags/v${version}";
22 hash = "sha256-ObZjTiEB4a7ForsugzKZDdIsTEWOX1zbv53ZJ4AllHE=";
25 build-system = [ poetry-core ];
32 doCheck = false; # requires orthanc server (not in Nixpkgs)
34 pythonImportsCheck = [ "pyorthanc" ];
37 description = "Python library that wraps the Orthanc REST API";
38 homepage = "https://github.com/gacou54/pyorthanc";
39 changelog = "https://github.com/gacou54/pyorthanc/releases/tag/v${version}";
40 license = licenses.mit;
41 maintainers = with maintainers; [ bcdarwin ];