python313Packages.snowplow-tracker: 1.0.4 -> 1.1.0 (#384667)

This commit is contained in:
Robert Schütz
2025-02-27 10:34:10 -08:00
committed by GitHub
4 changed files with 28 additions and 28 deletions
@@ -3,33 +3,38 @@
agate,
buildPythonPackage,
dbt-common,
fetchFromGitHub,
fetchPypi,
hatchling,
mashumaro,
protobuf,
pytestCheckHook,
pythonOlder,
pytz,
typing-extensions,
}:
buildPythonPackage rec {
pname = "dbt-adapters";
version = "1.11.0";
version = "1.14.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "dbt-labs";
repo = "dbt-adapters";
tag = "v${version}";
hash = "sha256-l2OwGbYFqUF6NOpIxmgyd7B3sCsZTCgu4noaSfwRFps=";
# missing tags on GitHub
src = fetchPypi {
pname = "dbt_adapters";
inherit version;
hash = "sha256-byBmlP3Gf8/olHl34L2SyMb4ZnKK5Gi1fZ3li2Acd+g=";
};
postPatch = ''
mkdir src
mv dbt src
'';
build-system = [ hatchling ];
pythonRelaxDeps = [ "protobuf" ];
pythonRelaxDeps = [
"mashumaro"
"protobuf"
];
dependencies = [
agate
@@ -48,9 +53,9 @@ buildPythonPackage rec {
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "The set of adapter protocols and base functionality that supports integration with dbt-core";
description = "Set of adapter protocols and base functionality that supports integration with dbt-core";
homepage = "https://github.com/dbt-labs/dbt-adapters";
changelog = "https://github.com/dbt-labs/dbt-adapters/blob/${src.tag}/CHANGELOG.md";
changelog = "https://github.com/dbt-labs/dbt-adapters/blob/main/dbt-adapters/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = [ ];
};
@@ -29,7 +29,7 @@
buildPythonPackage rec {
pname = "dbt-core";
version = "1.9.1";
version = "1.9.2";
pyproject = true;
disabled = pythonOlder "3.9";
@@ -38,7 +38,7 @@ buildPythonPackage rec {
owner = "dbt-labs";
repo = "dbt-core";
tag = "v${version}";
hash = "sha256-2WFCFzAS3HWx/cwYi1D6LZ0APFp83lGjpP1l7Yfcups=";
hash = "sha256-kCYQgWR9eMI7d7tM6c73dTFOyvcdmjHflTA1JdRJvvM=";
};
sourceRoot = "${src.name}/core";
@@ -4,23 +4,20 @@
dbt-core,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
setuptools,
snowflake-connector-python,
}:
buildPythonPackage rec {
pname = "dbt-snowflake";
version = "1.9.0";
version = "1.9.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "dbt-labs";
repo = "dbt-snowflake";
tag = "v${version}";
hash = "sha256-Oyh+f8IQrxWbMOwcZzoqkytVH2E5FVbCjEqXUtMxfsw=";
hash = "sha256-oPzSdAQgb2fKES3YcSGYjILFqixxxjdLCNVytVPecTg=";
};
build-system = [ setuptools ];
@@ -36,11 +33,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "dbt.adapters.snowflake" ];
meta = with lib; {
meta = {
description = "Plugin enabling dbt to work with Snowflake";
homepage = "https://github.com/dbt-labs/dbt-snowflake";
changelog = "https://github.com/dbt-labs/dbt-snowflake/blob/${src.tag}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ tjni ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ tjni ];
};
}
@@ -7,27 +7,25 @@
pytestCheckHook,
requests,
setuptools,
types-requests,
typing-extensions,
}:
buildPythonPackage rec {
pname = "snowplow-tracker";
version = "1.0.4";
version = "1.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "snowplow";
repo = "snowplow-python-tracker";
tag = version;
hash = "sha256-JYAmVW/+MK0XadF/Mjm3YX+ruSF/SBg0B7IMFz/G+X0=";
hash = "sha256-GfKMoMUUOxiUcUVdDc6YGgO+CVRvFjDtqQU/FrTO41U=";
};
build-system = [ setuptools ];
dependencies = [
requests
types-requests
typing-extensions
];
@@ -40,7 +38,7 @@ buildPythonPackage rec {
];
meta = {
changelog = "https://github.com/snowplow/snowplow-python-tracker/releases/tag/${src.tag}";
changelog = "https://github.com/snowplow/snowplow-python-tracker/blob/${src.tag}/CHANGES.txt";
description = "Add analytics to your Python and Django apps, webapps and games";
homepage = "https://github.com/snowplow/snowplow-python-tracker";
license = lib.licenses.asl20;