python311Packages.dbt-semantic-interfaces: refactor

This commit is contained in:
Fabian Affolter 2024-03-28 22:36:18 +01:00
parent 7a9688b8c3
commit db2e5df9e6

View File

@ -36,12 +36,12 @@ buildPythonPackage rec {
"importlib-metadata" "importlib-metadata"
]; ];
nativeBuildInputs = [ build-system = [
hatchling hatchling
pythonRelaxDepsHook pythonRelaxDepsHook
]; ];
propagatedBuildInputs = [ dependencies = [
click click
dateutils dateutils
importlib-metadata importlib-metadata
@ -63,9 +63,9 @@ buildPythonPackage rec {
]; ];
meta = with lib; { meta = with lib; {
changelog = "https://github.com/dbt-labs/dbt-semantic-interfaces/releases/tag/v${version}"; description = "Shared interfaces used by dbt-core and MetricFlow projects";
description = "shared interfaces used by dbt-core and MetricFlow projects";
homepage = "https://github.com/dbt-labs/dbt-semantic-interfaces"; 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; license = licenses.asl20;
maintainers = with maintainers; [ pbsds ]; maintainers = with maintainers; [ pbsds ];
}; };