depot/third_party/nixpkgs/pkgs/development/python-modules/sqlglot/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

56 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
duckdb,
fetchFromGitHub,
pytestCheckHook,
python-dateutil,
pythonOlder,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "sqlglot";
version = "23.12.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
repo = "sqlglot";
owner = "tobymao";
rev = "refs/tags/v${version}";
hash = "sha256-VUG/l1iZ/8vAJwhktN/tx8U8KVLgaghUPArtxEyIA54=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
# Optional dependency used in the sqlglot optimizer
python-dateutil
];
nativeCheckInputs = [
pytestCheckHook
duckdb
];
disabledTestPaths = [
# These integration tests assume a running Spark instance
"tests/dataframe/integration"
];
pythonImportsCheck = [ "sqlglot" ];
meta = with lib; {
description = "A no dependency Python SQL parser, transpiler, and optimizer";
homepage = "https://github.com/tobymao/sqlglot";
changelog = "https://github.com/tobymao/sqlglot/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ cpcloud ];
};
}