python312Packages.pyorthanc: 1.19.0 -> 1.19.1

Diff: https://github.com/gacou54/pyorthanc/compare/refs/tags/v1.19.0...v1.19.1

Changelog: https://github.com/gacou54/pyorthanc/releases/tag/v1.19.1
This commit is contained in:
Gaetan Lepage
2025-02-17 13:49:37 +01:00
parent a795c06ab7
commit 6412c1cc6d
@@ -2,7 +2,6 @@
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
poetry-core,
httpx,
pydicom,
@@ -10,20 +9,23 @@
buildPythonPackage rec {
pname = "pyorthanc";
version = "1.19.0";
disabled = pythonOlder "3.8";
version = "1.19.1";
pyproject = true;
src = fetchFromGitHub {
owner = "gacou54";
repo = pname;
repo = "pyorthanc";
tag = "v${version}";
hash = "sha256-6//kmkurtaXRGvnYnk/kU2j9F6V1Aui6IEdl+3DHGH0=";
hash = "sha256-97i341NXb7QsgN0X808mtz1rSKYSP+SMoGJy43Tkwug=";
};
build-system = [ poetry-core ];
pythonRelaxDeps = [
"pydicom"
];
dependencies = [
httpx
pydicom
@@ -33,11 +35,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "pyorthanc" ];
meta = with lib; {
meta = {
description = "Python library that wraps the Orthanc REST API";
homepage = "https://github.com/gacou54/pyorthanc";
changelog = "https://github.com/gacou54/pyorthanc/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ bcdarwin ];
changelog = "https://github.com/gacou54/pyorthanc/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ bcdarwin ];
};
}