From fd194e2162da4fd4cc3df05a6c7a9818b46f890c Mon Sep 17 00:00:00 2001 From: Kerstin Humm Date: Mon, 13 Apr 2026 14:14:57 +0200 Subject: [PATCH] python3Packages.scim2-models: 0.6.6 -> 0.6.11 Diff: https://github.com/python-scim/scim2-models/compare/0.6.6...0.6.11 Changelog: https://github.com/python-scim/scim2-models/releases/tag/0.6.11 --- .../python-modules/scim2-models/default.nix | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/scim2-models/default.nix b/pkgs/development/python-modules/scim2-models/default.nix index 841d57fc1cc5..cd1f8543d7c9 100644 --- a/pkgs/development/python-modules/scim2-models/default.nix +++ b/pkgs/development/python-modules/scim2-models/default.nix @@ -5,11 +5,15 @@ uv-build, pydantic, pytestCheckHook, + django, + fastapi, + flask, + httpx, }: buildPythonPackage (finalAttrs: { pname = "scim2-models"; - version = "0.6.6"; + version = "0.6.11"; pyproject = true; @@ -17,7 +21,7 @@ buildPythonPackage (finalAttrs: { owner = "python-scim"; repo = "scim2-models"; tag = finalAttrs.version; - hash = "sha256-pYINB8avoYt1VUgvyDTXw3ejSBoZDFEQK0F4flTeyaY="; + hash = "sha256-sqXygOutxdLBRJYC3nn78JFsngF2Tq6E0g91VKXQhZE="; }; postPatch = '' @@ -29,7 +33,13 @@ buildPythonPackage (finalAttrs: { dependencies = [ pydantic ] ++ pydantic.optional-dependencies.email; - nativeCheckInputs = [ pytestCheckHook ]; + nativeCheckInputs = [ + pytestCheckHook + django + fastapi + flask + httpx + ]; pythonImportsCheck = [ "scim2_models" ];