587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
72 lines
1.3 KiB
Nix
72 lines
1.3 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, click
|
|
, dateutils
|
|
, dbt-postgres
|
|
, fetchFromGitHub
|
|
, hatchling
|
|
, pythonRelaxDepsHook
|
|
, hypothesis
|
|
, importlib-metadata
|
|
, jinja2
|
|
, jsonschema
|
|
, more-itertools
|
|
, pydantic
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pyyaml
|
|
, typing-extensions
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dbt-semantic-interfaces";
|
|
version = "0.4.4";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dbt-labs";
|
|
repo = "dbt-semantic-interfaces";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-uvwcnOKjwxEmA+/QRGSRofpoE4jZzmE02mGSDLINrJw=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"importlib-metadata"
|
|
];
|
|
|
|
build-system = [
|
|
hatchling
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
dependencies = [
|
|
click
|
|
dateutils
|
|
importlib-metadata
|
|
jinja2
|
|
jsonschema
|
|
more-itertools
|
|
pydantic
|
|
pyyaml
|
|
typing-extensions
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
hypothesis
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"dbt_semantic_interfaces"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Shared interfaces used by dbt-core and MetricFlow projects";
|
|
homepage = "https://github.com/dbt-labs/dbt-semantic-interfaces";
|
|
changelog = "https://github.com/dbt-labs/dbt-semantic-interfaces/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ pbsds ];
|
|
};
|
|
}
|