python3Packages.pydantic: 2.10.3 -> 2.10.5

https://github.com/pydantic/pydantic/blob/v2.10.5/HISTORY.md
This commit is contained in:
Martin Weinelt 2025-01-19 21:17:20 +01:00
parent b17df141e2
commit 20fe6ff4ae
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -29,7 +29,7 @@
buildPythonPackage rec {
pname = "pydantic";
version = "2.10.3";
version = "2.10.5";
pyproject = true;
disabled = pythonOlder "3.8";
@ -38,7 +38,7 @@ buildPythonPackage rec {
owner = "pydantic";
repo = "pydantic";
tag = "v${version}";
hash = "sha256-/QxWgViqVmPnX/sO+qkvGl+WQX3OPXpS44CdP2HHOis=";
hash = "sha256-SEgBuhof1rqnKFI7O1aajkgp17EgaPNcfJzbh/j4ebg=";
};
buildInputs = lib.optionals (pythonOlder "3.9") [ libxcrypt ];
@ -102,7 +102,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Data validation and settings management using Python type hinting";
homepage = "https://github.com/pydantic/pydantic";
changelog = "https://github.com/pydantic/pydantic/blob/v${version}/HISTORY.md";
changelog = "https://github.com/pydantic/pydantic/blob/${src.tag}/HISTORY.md";
license = licenses.mit;
maintainers = with maintainers; [ wd15 ];
};