Merge pull request #318681 from r-ryantm/auto-update/python311Packages.pyorthanc

python311Packages.pyorthanc: 1.16.1 -> 1.18.0
This commit is contained in:
OTABI Tomoya 2024-06-19 21:20:58 +09:00 committed by GitHub
commit bf5269942f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,7 +3,6 @@
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
pythonRelaxDepsHook,
poetry-core,
httpx,
pydicom,
@ -11,30 +10,25 @@
buildPythonPackage rec {
pname = "pyorthanc";
version = "1.16.1";
version = "1.18.0";
disabled = pythonOlder "3.8";
format = "pyproject";
pyproject = true;
src = fetchFromGitHub {
owner = "gacou54";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-6l3L0YUAqedyRjlQ6K3SaAMdGK2C0AeKpJj6MyXi4RA=";
hash = "sha256-ObZjTiEB4a7ForsugzKZDdIsTEWOX1zbv53ZJ4AllHE=";
};
nativeBuildInputs = [
pythonRelaxDepsHook
poetry-core
];
build-system = [ poetry-core ];
propagatedBuildInputs = [
dependencies = [
httpx
pydicom
];
pythonRelaxDeps = [ "httpx" ];
doCheck = false; # requires orthanc server (not in Nixpkgs)
pythonImportsCheck = [ "pyorthanc" ];