mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
67 lines
1.3 KiB
Nix
67 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.8.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dbt-labs";
|
|
repo = "dbt-semantic-interfaces";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-gY2CJqN/ohYs4Qej451PexWcsM7N9GuHt79qC+NC7T4=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|