21 buildPythonPackage rec {
22 pname = "dbt-semantic-interfaces";
26 disabled = pythonOlder "3.8";
28 src = fetchFromGitHub {
30 repo = "dbt-semantic-interfaces";
31 rev = "refs/tags/v${version}";
32 hash = "sha256-uvwcnOKjwxEmA+/QRGSRofpoE4jZzmE02mGSDLINrJw=";
61 pythonImportsCheck = [
62 "dbt_semantic_interfaces"
66 description = "Shared interfaces used by dbt-core and MetricFlow projects";
67 homepage = "https://github.com/dbt-labs/dbt-semantic-interfaces";
68 changelog = "https://github.com/dbt-labs/dbt-semantic-interfaces/releases/tag/v${version}";
69 license = licenses.asl20;
70 maintainers = with maintainers; [ pbsds ];