Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
894 B
Nix
44 lines
894 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
poetry-core,
|
|
google-cloud-bigquery,
|
|
google-cloud-bigquery-storage,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "harlequin-bigquery";
|
|
version = "1.0.3";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "harlequin_bigquery";
|
|
inherit version;
|
|
hash = "sha256-jdDwmfiU7x4zl4hg12evrPqLEzPB2M8/1HN4d0N1EJQ=";
|
|
};
|
|
|
|
build-system = [
|
|
poetry-core
|
|
];
|
|
|
|
dependencies = [
|
|
google-cloud-bigquery
|
|
google-cloud-bigquery-storage
|
|
];
|
|
|
|
# To prevent circular dependency
|
|
# as harlequin-bigquery requires harlequin which requires harlequin-bigquery
|
|
doCheck = false;
|
|
pythonRemoveDeps = [
|
|
"harlequin"
|
|
];
|
|
|
|
meta = {
|
|
description = "Harlequin adapter for Google BigQuery";
|
|
homepage = "https://pypi.org/project/harlequin-bigquery/";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ pcboy ];
|
|
};
|
|
}
|