From d44056ae07c72ed1b68f3af1709d38193ea3de06 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 16 Oct 2025 20:33:54 +0000 Subject: [PATCH 1/2] python3Packages.xmlschema: 4.1.0 -> 4.2.0 --- pkgs/development/python-modules/xmlschema/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/xmlschema/default.nix b/pkgs/development/python-modules/xmlschema/default.nix index be3f1ecb12ec..4997eed9be4e 100644 --- a/pkgs/development/python-modules/xmlschema/default.nix +++ b/pkgs/development/python-modules/xmlschema/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "xmlschema"; - version = "4.1.0"; + version = "4.2.0"; pyproject = true; disabled = pythonOlder "3.7"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "sissaschool"; repo = "xmlschema"; tag = "v${version}"; - hash = "sha256-3nvl49rlwQpNARmWBSw+faL+yNGqNecokjGGpnaC8a0="; + hash = "sha256-zwY0YXMlhQEPdHLPivwE9ZI9XoY9UVFHVLUOYNeq9Ew="; }; build-system = [ setuptools ]; From ea9c00b162c441f9ab41f004a1ddc82b5c5c2002 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 11 Nov 2025 07:36:17 -0800 Subject: [PATCH 2/2] python3Packages.pysaml2: mark broken It is incompatible with our version of xmlschema. --- pkgs/development/python-modules/pysaml2/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/pysaml2/default.nix b/pkgs/development/python-modules/pysaml2/default.nix index 188bf2e3f80e..53eac4e8caad 100644 --- a/pkgs/development/python-modules/pysaml2/default.nix +++ b/pkgs/development/python-modules/pysaml2/default.nix @@ -98,6 +98,8 @@ buildPythonPackage rec { pythonImportsCheck = [ "saml2" ]; meta = with lib; { + # https://github.com/IdentityPython/pysaml2/issues/947 + broken = lib.versionAtLeast xmlschema.version "4.2.0"; description = "Python implementation of SAML Version 2 Standard"; homepage = "https://github.com/IdentityPython/pysaml2"; changelog = "https://github.com/IdentityPython/pysaml2/blob/v${version}/CHANGELOG.md";