python312Packages.dbt-core: update dependencies (#381309)
This commit is contained in:
@@ -12,7 +12,6 @@
|
||||
jinja2,
|
||||
logbook,
|
||||
mashumaro,
|
||||
minimal-snowplow-tracker,
|
||||
networkx,
|
||||
packaging,
|
||||
pathspec,
|
||||
@@ -23,6 +22,7 @@
|
||||
pyyaml,
|
||||
requests,
|
||||
setuptools,
|
||||
snowplow-tracker,
|
||||
sqlparse,
|
||||
typing-extensions,
|
||||
}:
|
||||
@@ -72,7 +72,6 @@ buildPythonPackage rec {
|
||||
jinja2
|
||||
logbook
|
||||
mashumaro
|
||||
minimal-snowplow-tracker
|
||||
networkx
|
||||
packaging
|
||||
pathspec
|
||||
@@ -80,6 +79,7 @@ buildPythonPackage rec {
|
||||
pytz
|
||||
pyyaml
|
||||
requests
|
||||
snowplow-tracker
|
||||
sqlparse
|
||||
typing-extensions
|
||||
] ++ mashumaro.optional-dependencies.msgpack;
|
||||
|
||||
@@ -0,0 +1,49 @@
|
||||
{
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
freezegun,
|
||||
httmock,
|
||||
lib,
|
||||
pytestCheckHook,
|
||||
requests,
|
||||
setuptools,
|
||||
types-requests,
|
||||
typing-extensions,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "snowplow-tracker";
|
||||
version = "1.0.4";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "snowplow";
|
||||
repo = "snowplow-python-tracker";
|
||||
tag = version;
|
||||
hash = "sha256-JYAmVW/+MK0XadF/Mjm3YX+ruSF/SBg0B7IMFz/G+X0=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
requests
|
||||
types-requests
|
||||
typing-extensions
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "snowplow_tracker" ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
httmock
|
||||
freezegun
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/snowplow/snowplow-python-tracker/releases/tag/${src.tag}";
|
||||
description = "Add analytics to your Python and Django apps, webapps and games";
|
||||
homepage = "https://github.com/snowplow/snowplow-python-tracker";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
||||
@@ -15230,6 +15230,8 @@ self: super: with self; {
|
||||
|
||||
snowflake-sqlalchemy = callPackage ../development/python-modules/snowflake-sqlalchemy { };
|
||||
|
||||
snowplow-tracker = callPackage ../development/python-modules/snowplow-tracker { };
|
||||
|
||||
snscrape = callPackage ../development/python-modules/snscrape { };
|
||||
|
||||
snuggs = callPackage ../development/python-modules/snuggs { };
|
||||
|
||||
Reference in New Issue
Block a user