29 lines
637 B
Nix
29 lines
637 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
hatchling,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "pydantic-settings";
|
|
version = "v2.1.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pydantic";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-hU7u/AzaqCHKSUDHybsgXTW8IWi9hzBttPYDmMqdZbI=";
|
|
};
|
|
|
|
propagatedBuildInputs = [hatchling];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Settings management using Pydantic, this is the new official home of Pydantic's BaseSettings.";
|
|
homepage = "https://github.com/pydantic/pydantic-settings";
|
|
maintainers = with maintainers; [];
|
|
};
|
|
}
|