python311Packages.dbt-core 1.7.12 -> 1.7.13 https://github.com/dbt-labs/dbt-core/releases attrpath: python311Packages.dbt-core Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/ihyaq1b8zpdd00hkkkksjr3qx70ran00-packages.json.drv building '/nix/store/ihyaq1b8zpdd00hkkkksjr3qx70ran00-packages.json.drv'... Going to be running update for following packages: - python3.11-dbt-core-1.7.12 Press Enter key to continue... Running update for: - python3.11-dbt-core-1.7.12: UPDATING ... - python3.11-dbt-core-1.7.12: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/dbt-core/default.nix b/pkgs/development/python-modules/dbt-core/default.nix index e440fb6919b1..db61698ebfaa 100644 --- a/pkgs/development/python-modules/dbt-core/default.nix +++ b/pkgs/development/python-modules/dbt-core/default.nix @@ -33,7 +33,7 @@ buildPythonPackage rec { pname = "dbt-core"; - version = "1.7.12"; + version = "1.7.13"; pyproject = true; disabled = pythonOlder "3.8"; @@ -42,7 +42,7 @@ buildPythonPackage rec { owner = "dbt-labs"; repo = "dbt-core"; rev = "refs/tags/v${version}"; - hash = "sha256-mkqtlItr6oRsF5S+CPw4fAP/INJ2yw3vcKxEYeB3ItI="; + hash = "sha256-uai1ihdmJpFkQqpx7edWiwwy0ek4dbclR/2OuiNbaXM="; }; sourceRoot = "${src.name}/core"; An auto update branch exists with message `python311Packages.dbt-core: 1.7.11 -> 1.7.12`. New version is 1.7.13. The auto update branch does not match or exceed the new version. Old version 1.7.12" not present in staging derivation file with contents: { lib , agate , buildPythonPackage , cffi , click , colorama , dbt-extractor , dbt-semantic-interfaces , fetchFromGitHub , hologram , idna , isodate , jinja2 , logbook , mashumaro , minimal-snowplow-tracker , networkx , packaging , pathspec , protobuf , python3 , pythonOlder , pythonRelaxDepsHook , pytz , pyyaml , requests , setuptools , sqlparse , typing-extensions , urllib3 , werkzeug }: buildPythonPackage rec { pname = "dbt-core"; version = "1.7.13"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "dbt-labs"; repo = "dbt-core"; rev = "refs/tags/v${version}"; hash = "sha256-uai1ihdmJpFkQqpx7edWiwwy0ek4dbclR/2OuiNbaXM="; }; sourceRoot = "${src.name}/core"; pythonRelaxDeps = [ "agate" "click" "mashumaro" "networkx" "logbook" "pathspec" "urllib3" ]; build-system = [ pythonRelaxDepsHook setuptools ]; dependencies = [ agate cffi click colorama dbt-extractor dbt-semantic-interfaces hologram idna isodate jinja2 logbook mashumaro minimal-snowplow-tracker networkx packaging pathspec protobuf pytz pyyaml requests sqlparse typing-extensions urllib3 werkzeug ] ++ mashumaro.optional-dependencies.msgpack; # tests exist for the dbt tool but not for this package specifically doCheck = false; passthru = { withAdapters = python3.pkgs.callPackage ./with-adapters.nix { }; }; meta = with lib; { description = "Enables data analysts and engineers to transform their data using the same practices that software engineers use to build applications"; longDescription = '' The dbt tool needs adapters to data sources in order to work. The available adapters are: dbt-bigquery dbt-postgres dbt-redshift dbt-snowflake An example of building this package with a few adapters: dbt.withAdapters (adapters: [ adapters.dbt-bigquery adapters.dbt-postgres ]) ''; homepage = "https://github.com/dbt-labs/dbt-core"; changelog = "https://github.com/dbt-labs/dbt-core/blob/v${version}/CHANGELOG.md"; license = licenses.asl20; maintainers = with maintainers; [ mausch tjni ]; mainProgram = "dbt"; }; }