mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 20:25:32 +03:00
73 lines
1.5 KiB
Nix
73 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
# build
|
|
setuptools,
|
|
# required
|
|
pytz,
|
|
requests,
|
|
tzlocal,
|
|
# optional
|
|
requests-kerberos,
|
|
sqlalchemy,
|
|
keyring,
|
|
# tests
|
|
pytestCheckHook,
|
|
httpretty,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "trino-python-client";
|
|
version = "0.323.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = pname;
|
|
owner = "trinodb";
|
|
tag = version;
|
|
hash = "sha256-Nr7p7x5cxxuPv2NUh1uMth97OQ+H2KBlu0SHVJ7Zu1M=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [
|
|
pytz
|
|
requests
|
|
tzlocal
|
|
];
|
|
|
|
optional-dependencies = lib.fix (self: {
|
|
kerberos = [ requests-kerberos ];
|
|
sqlalchemy = [ sqlalchemy ];
|
|
external-authentication-token-cache = [ keyring ];
|
|
all = self.kerberos ++ self.sqlalchemy;
|
|
});
|
|
|
|
nativeCheckInputs = [
|
|
httpretty
|
|
pytestCheckHook
|
|
] ++ optional-dependencies.all;
|
|
|
|
pythonImportsCheck = [ "trino" ];
|
|
|
|
disabledTestPaths = [
|
|
# these all require a running trino instance
|
|
"tests/integration/test_types_integration.py"
|
|
"tests/integration/test_dbapi_integration.py"
|
|
"tests/integration/test_sqlalchemy_integration.py"
|
|
];
|
|
|
|
pytestFlagsArray = [ "-k 'not auth'" ];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/trinodb/trino-python-client/blob/${version}/CHANGES.md";
|
|
description = "Client for the Trino distributed SQL Engine";
|
|
homepage = "https://github.com/trinodb/trino-python-client";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [
|
|
cpcloud
|
|
flokli
|
|
];
|
|
};
|
|
}
|