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" ];
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";

View File

@@ -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 ];