2025-07-24 14:27:50 +02:00

146 lines
2.7 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
altair,
cryptography,
jinja2,
jsonschema,
marshmallow,
mistune,
numpy,
packaging,
pandas,
posthog,
pydantic,
pyparsing,
python-dateutil,
requests,
ruamel-yaml,
scipy,
tqdm,
tzlocal,
# test
pytestCheckHook,
pytest-mock,
pytest-order,
pytest-random-order,
click,
flaky,
freezegun,
invoke,
moto,
psycopg2,
requirements-parser,
responses,
sqlalchemy,
}:
buildPythonPackage rec {
pname = "great-expectations";
version = "1.3.2";
pyproject = true;
src = fetchFromGitHub {
owner = "great-expectations";
repo = "great_expectations";
tag = version;
hash = "sha256-MV6T8PyOyAQ2SfT8B38YdCtqj6oeZCW+z08koBR739A=";
};
postPatch = ''
substituteInPlace tests/conftest.py --replace 'locale.setlocale(locale.LC_ALL, "en_US.UTF-8")' ""
substituteInPlace pyproject.toml \
--replace-fail '"ignore::marshmallow.warnings.ChangedInMarshmallow4Warning",' ""
'';
build-system = [ setuptools ];
dependencies = [
altair
cryptography
jinja2
jsonschema
marshmallow
mistune
numpy
packaging
pandas
posthog
pydantic
pyparsing
python-dateutil
requests
ruamel-yaml
scipy
tqdm
tzlocal
];
pythonRelaxDeps = [
"altair"
"pandas"
"posthog"
];
nativeCheckInputs = [
pytestCheckHook
pytest-mock
pytest-order
pytest-random-order
click
flaky
freezegun
invoke
moto
psycopg2
requirements-parser
responses
sqlalchemy
]
++ moto.optional-dependencies.s3
++ moto.optional-dependencies.sns;
disabledTestPaths = [
# try to access external URLs:
"tests/integration/cloud/rest_contracts"
"tests/integration/spark"
# moto-related import errors:
"tests/actions"
"tests/data_context"
"tests/datasource"
"tests/execution_engine"
# locale-related rendering issues, mostly:
"tests/core/test__docs_decorators.py"
"tests/expectations/test_expectation_atomic_renderers.py"
"tests/render"
];
disabledTestMarks = [
"postgresql"
"snowflake"
"spark"
];
disabledTests = [
# tries to access network:
"test_checkpoint_run_with_data_docs_and_slack_actions_emit_page_links"
"test_checkpoint_run_with_slack_action_no_page_links"
];
pythonImportsCheck = [ "great_expectations" ];
meta = {
broken = true; # 408 tests fail
description = "Library for writing unit tests for data validation";
homepage = "https://docs.greatexpectations.io";
changelog = "https://github.com/great-expectations/great_expectations/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ bcdarwin ];
};
}