5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
66 lines
1.3 KiB
Nix
66 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
click,
|
|
dateutils,
|
|
fetchFromGitHub,
|
|
hatchling,
|
|
hypothesis,
|
|
importlib-metadata,
|
|
jinja2,
|
|
jsonschema,
|
|
more-itertools,
|
|
pydantic,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
pyyaml,
|
|
typing-extensions,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dbt-semantic-interfaces";
|
|
version = "0.6.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dbt-labs";
|
|
repo = "dbt-semantic-interfaces";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-V6yMT9Fkug+T3smBEu0Szg5GPMRxEOZc4gtJybWXbrs=";
|
|
};
|
|
|
|
pythonRelaxDeps = [ "importlib-metadata" ];
|
|
|
|
build-system = [
|
|
hatchling
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|