python3Packages.pydantic-settings: 2.9.1 -> 2.10.1

https://github.com/pydantic/pydantic-settings/releases/tag/2.10.0
https://github.com/pydantic/pydantic-settings/releases/tag/2.10.1

Changed files
+3 -3
pkgs
development
python-modules
pydantic-settings
+3 -3
pkgs/development/python-modules/pydantic-settings/default.nix
···
let
self = buildPythonPackage rec {
pname = "pydantic-settings";
-
version = "2.9.1";
pyproject = true;
disabled = pythonOlder "3.8";
···
src = fetchFromGitHub {
owner = "pydantic";
repo = "pydantic-settings";
-
tag = "v${version}";
-
hash = "sha256-KcpDOdp8qDAgTI/+r6rb21UrjkeOFfCFnON1kMSKKSE=";
};
build-system = [ hatchling ];
···
let
self = buildPythonPackage rec {
pname = "pydantic-settings";
+
version = "2.10.1";
pyproject = true;
disabled = pythonOlder "3.8";
···
src = fetchFromGitHub {
owner = "pydantic";
repo = "pydantic-settings";
+
tag = version;
+
hash = "sha256-Bi5MIXB9fVE5hoyk8QxxaGa9+puAlW+YGdi/WMNf/RQ=";
};
build-system = [ hatchling ];