Merge pull request #290115 from r-ryantm/auto-update/python311Packages.xsdata

python311Packages.xsdata: 24.1 -> 24.2.1
This commit is contained in:
Robert Schütz 2024-02-23 17:16:30 +00:00 committed by GitHub
commit b093dd8294
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "xsdata"; pname = "xsdata";
version = "24.1"; version = "24.2.1";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -26,8 +26,8 @@ buildPythonPackage rec {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "tefra"; owner = "tefra";
repo = "xsdata"; repo = "xsdata";
rev = "v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-vdcCTJqvaRehGWfTd9GR/DypF9ftY4ite7SDMPc2Ups="; hash = "sha256-o3G0isXShwNHaOiA4TNml0IhStB3X4jB9CgrVKViBlY=";
}; };
patches = [ patches = [
@ -94,7 +94,7 @@ buildPythonPackage rec {
meta = { meta = {
description = "Naive XML & JSON bindings for Python"; description = "Naive XML & JSON bindings for Python";
homepage = "https://github.com/tefra/xsdata"; homepage = "https://github.com/tefra/xsdata";
changelog = "https://github.com/tefra/xsdata/blob/${src.rev}/CHANGES.rst"; changelog = "https://github.com/tefra/xsdata/blob/${src.rev}/CHANGES.md";
license = lib.licenses.mit; license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ]; maintainers = with lib.maintainers; [ dotlambda ];
}; };