python3Packages.xmlschema: 4.1.0 -> 4.2.0 (#452743)

This commit is contained in:
dotlambda
2025-11-11 17:14:48 +00:00
committed by GitHub
2 changed files with 4 additions and 2 deletions

View File

@@ -89,6 +89,8 @@ buildPythonPackage rec {
pythonImportsCheck = [ "saml2" ]; pythonImportsCheck = [ "saml2" ];
meta = with lib; { 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"; description = "Python implementation of SAML Version 2 Standard";
homepage = "https://github.com/IdentityPython/pysaml2"; homepage = "https://github.com/IdentityPython/pysaml2";
changelog = "https://github.com/IdentityPython/pysaml2/blob/v${version}/CHANGELOG.md"; changelog = "https://github.com/IdentityPython/pysaml2/blob/v${version}/CHANGELOG.md";

View File

@@ -12,7 +12,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "xmlschema"; pname = "xmlschema";
version = "4.1.0"; version = "4.2.0";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "sissaschool"; owner = "sissaschool";
repo = "xmlschema"; repo = "xmlschema";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-3nvl49rlwQpNARmWBSw+faL+yNGqNecokjGGpnaC8a0="; hash = "sha256-zwY0YXMlhQEPdHLPivwE9ZI9XoY9UVFHVLUOYNeq9Ew=";
}; };
build-system = [ setuptools ]; build-system = [ setuptools ];