fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
49 lines
1,003 B
Nix
49 lines
1,003 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
pythonRelaxDepsHook,
|
|
poetry-core,
|
|
httpx,
|
|
pydicom,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyorthanc";
|
|
version = "1.16.1";
|
|
disabled = pythonOlder "3.8";
|
|
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gacou54";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-6l3L0YUAqedyRjlQ6K3SaAMdGK2C0AeKpJj6MyXi4RA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pythonRelaxDepsHook
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
httpx
|
|
pydicom
|
|
];
|
|
|
|
pythonRelaxDeps = [ "httpx" ];
|
|
|
|
doCheck = false; # requires orthanc server (not in Nixpkgs)
|
|
|
|
pythonImportsCheck = [ "pyorthanc" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python library that wraps the Orthanc REST API";
|
|
homepage = "https://github.com/gacou54/pyorthanc";
|
|
changelog = "https://github.com/gacou54/pyorthanc/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
};
|
|
}
|