aithings/packages/pydantic-settings/default.nix
2024-08-11 18:42:03 +02:00

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; [];
};
}