From c3420ea8cf09c0dbdf7a3ed256fd58dee242a5a8 Mon Sep 17 00:00:00 2001 From: Ben Darwin Date: Mon, 19 Aug 2024 14:39:36 -0400 Subject: [PATCH] python312Packages.fhir-py: 1.4.2 -> 2.0.4 --- pkgs/development/python-modules/fhir-py/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/fhir-py/default.nix b/pkgs/development/python-modules/fhir-py/default.nix index f03666938c48..518687e15d7e 100644 --- a/pkgs/development/python-modules/fhir-py/default.nix +++ b/pkgs/development/python-modules/fhir-py/default.nix @@ -10,12 +10,13 @@ pytestCheckHook, pytest-asyncio, pytest-cov-stub, + pydantic, responses, }: buildPythonPackage rec { pname = "fhir-py"; - version = "1.4.2"; + version = "2.0.4"; pyproject = true; disabled = pythonOlder "3.8"; @@ -24,7 +25,7 @@ buildPythonPackage rec { owner = "beda-software"; repo = "fhir-py"; rev = "refs/tags/v${version}"; - hash = "sha256-kYqoRso1ypN5novRxMMzz1h2NGNybbw5lK4+HErG79I="; + hash = "sha256-WDYDQqeNwt4cKEgF+HqMOuEwUezS10YUOZp+eAui6nM="; }; build-system = [ flit-core ]; @@ -39,6 +40,7 @@ buildPythonPackage rec { pytestCheckHook pytest-asyncio pytest-cov-stub + pydantic responses ];