69 lines
1.5 KiB
Nix
69 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
hatchling,
|
|
pydantic,
|
|
python-dotenv,
|
|
pytestCheckHook,
|
|
pytest-examples,
|
|
pytest-mock,
|
|
}:
|
|
|
|
let
|
|
self = buildPythonPackage rec {
|
|
pname = "pydantic-settings";
|
|
version = "2.5.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pydantic";
|
|
repo = "pydantic-settings";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-VkvkF7tJfFknYCXz7tq1578ebW79Ovx1tOFO8o8wK/I=";
|
|
};
|
|
|
|
build-system = [ hatchling ];
|
|
|
|
dependencies = [
|
|
pydantic
|
|
python-dotenv
|
|
];
|
|
|
|
pythonImportsCheck = [ "pydantic_settings" ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-examples
|
|
pytest-mock
|
|
];
|
|
|
|
disabledTests = [
|
|
# expected to fail
|
|
"test_docs_examples[docs/index.md:212-246]"
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
# ruff is a dependency of pytest-examples which is required to run the tests.
|
|
# We do not want all of the downstream packages that depend on pydantic-settings to also depend on ruff.
|
|
doCheck = false;
|
|
passthru.tests = {
|
|
pytest = self.overridePythonAttrs { doCheck = true; };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Settings management using pydantic";
|
|
homepage = "https://github.com/pydantic/pydantic-settings";
|
|
license = licenses.mit;
|
|
broken = lib.versionOlder pydantic.version "2.0.0";
|
|
maintainers = [ ];
|
|
};
|
|
};
|
|
in
|
|
self
|