python3Packages.dbt-common: 1.23.0-unstable-2025-04-21 -> 1.28.0-unstable-2025-08-14

Changelog: https://github.com/dbt-labs/dbt-common/blob/main/CHANGELOG.md

Changed files
+6 -4
pkgs
development
python-modules
dbt-common
+6 -4
pkgs/development/python-modules/dbt-common/default.nix
···
hatchling,
# dependencies
+
dbt-protos,
agate,
colorama,
deepdiff,
···
buildPythonPackage rec {
pname = "dbt-common";
-
version = "1.23.0-unstable-2025-04-21";
+
version = "1.28.0-unstable-2025-08-14";
pyproject = true;
src = fetchFromGitHub {
owner = "dbt-labs";
repo = "dbt-common";
-
rev = "03e09c01f20573975e8e17776a4b7c9088b3f212"; # They don't tag releases
-
hash = "sha256-KqnwlFZZRYuWRflMzjrqCPBnzY9q/pPhceM2DGqz5bw=";
+
rev = "dd34e0a0565620863ff70c0b02421d84fcee8a02"; # They don't tag releases
+
hash = "sha256-hG6S+IIAR3Cu69oFapQUVoCdaiEQYeMQ/ekBuAXxPrI=";
};
build-system = [ hatchling ];
···
];
dependencies = [
+
dbt-protos
agate
colorama
deepdiff
···
meta = {
description = "Shared common utilities for dbt-core and adapter implementations use";
homepage = "https://github.com/dbt-labs/dbt-common";
-
changelog = "https://github.com/dbt-labs/dbt-common/blob/${version}/CHANGELOG.md";
+
changelog = "https://github.com/dbt-labs/dbt-common/blob/main/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = [ ];
};