python312Packages.dbt-common: 1.11.0 -> 1.12.0

This commit is contained in:
Theodore Ni 2024-11-06 08:32:35 -08:00
parent 0fc41ad977
commit 218f61cfad
No known key found for this signature in database
GPG Key ID: 48B67583BDDD4474

View File

@ -25,24 +25,23 @@
pytestCheckHook,
pytest-mock,
pytest-xdist,
numpy,
}:
buildPythonPackage rec {
pname = "dbt-common";
version = "1.11.0";
version = "1.12.0";
pyproject = true;
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "dbt-labs";
repo = "dbt-common";
# Unfortunatly, upstream doesn't tag commits on GitHub, and the pypi source
# Unfortunately, upstream doesn't tag commits on GitHub, and the pypi source
# doesn't include tests. TODO: Write an update script that will detect the
# version from `dbt_common/__about__.py`.
rev = "ed11c6ceb4f29d4a79489469309d9ce9dd1757e6";
hash = "sha256-JA6hFQwF7h1tXyCxBVKGgyevdTxyYeN3I/Bwy9uoC0Y=";
rev = "5a401a9e8dd46e4582ac4edd2883e34714e77530";
hash = "sha256-SIMg6ewnE6kY+drqcPlYrxt1XlWBurZU62FI/QnHAHY=";
};
build-system = [ hatchling ];
@ -73,12 +72,14 @@ buildPythonPackage rec {
pytest-xdist
pytest-mock
];
disabledTests = [
# Assertion errors (TODO: Notify upstream)
"test_create_print_json"
"test_events"
"test_extra_dict_on_event"
];
pythonImportsCheck = [ "dbt_common" ];
meta = {