94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
128 lines
2.6 KiB
Nix
128 lines
2.6 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, autoflake
|
|
, cython
|
|
, devtools
|
|
, email-validator
|
|
, fetchFromGitHub
|
|
, pytest-mock
|
|
, pytestCheckHook
|
|
, python-dotenv
|
|
, pythonAtLeast
|
|
, pythonOlder
|
|
, pyupgrade
|
|
, typing-extensions
|
|
# dependencies for building documentation.
|
|
# docs fail to build in Darwin sandbox: https://github.com/samuelcolvin/pydantic/issues/4245
|
|
, withDocs ? (stdenv.hostPlatform == stdenv.buildPlatform && !stdenv.isDarwin && pythonAtLeast "3.10")
|
|
, ansi2html
|
|
, markdown-include
|
|
, mkdocs
|
|
, mkdocs-exclude
|
|
, mkdocs-material
|
|
, mdx-truly-sane-lists
|
|
, sqlalchemy
|
|
, ujson
|
|
, orjson
|
|
, hypothesis
|
|
, libxcrypt
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pydantic";
|
|
version = "1.10.7";
|
|
format = "setuptools";
|
|
|
|
outputs = [
|
|
"out"
|
|
] ++ lib.optionals withDocs [
|
|
"doc"
|
|
];
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "samuelcolvin";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-7X7rlHJ5Q01CuB9FZzoUfyfwx6AMXtE1BV5t+LnZKIM=";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i '/flake8/ d' Makefile
|
|
'';
|
|
|
|
buildInputs = lib.optionals (pythonOlder "3.9") [
|
|
libxcrypt
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cython
|
|
] ++ lib.optionals withDocs [
|
|
# dependencies for building documentation
|
|
autoflake
|
|
ansi2html
|
|
markdown-include
|
|
mdx-truly-sane-lists
|
|
mkdocs
|
|
mkdocs-exclude
|
|
mkdocs-material
|
|
sqlalchemy
|
|
ujson
|
|
orjson
|
|
hypothesis
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
devtools
|
|
pyupgrade
|
|
typing-extensions
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
dotenv = [
|
|
python-dotenv
|
|
];
|
|
email = [
|
|
email-validator
|
|
];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
pytest-mock
|
|
pytestCheckHook
|
|
] ++ lib.flatten (lib.attrValues passthru.optional-dependencies);
|
|
|
|
pytestFlagsArray = [
|
|
# https://github.com/pydantic/pydantic/issues/4817
|
|
"-W" "ignore::pytest.PytestReturnNotNoneWarning"
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
# Must include current directory into PYTHONPATH, since documentation
|
|
# building process expects "import pydantic" to work.
|
|
preBuild = lib.optionalString withDocs ''
|
|
PYTHONPATH=$PWD:$PYTHONPATH make docs
|
|
'';
|
|
|
|
# Layout documentation in same way as "sphinxHook" does.
|
|
postInstall = lib.optionalString withDocs ''
|
|
mkdir -p $out/share/doc/$name
|
|
mv ./site $out/share/doc/$name/html
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
pythonImportsCheck = [ "pydantic" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/samuelcolvin/pydantic";
|
|
description = "Data validation and settings management using Python type hinting";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ wd15 ];
|
|
};
|
|
}
|