1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
{
lib,
boto3,
botocore,
buildPythonPackage,
fastparquet,
fetchPypi,
fsspec,
hatchling,
pandas,
pyarrow,
python-dateutil,
sqlalchemy,
tenacity,
}:
buildPythonPackage rec {
pname = "pyathena";
version = "3.17.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-jlS6qjOG2syTpsY/jNkplOULiDPXR3cmWSMa5O9EGPc=";
};
build-system = [ hatchling ];
dependencies = [
boto3
botocore
fsspec
tenacity
python-dateutil
];
optional-dependencies = {
pandas = [ pandas ];
sqlalchemy = [ sqlalchemy ];
arrow = [ pyarrow ];
fastparquet = [ fastparquet ];
};
# Nearly all tests depend on a working AWS Athena instance,
# therefore deactivating them.
# https://github.com/laughingman7743/PyAthena/#testing
doCheck = false;
pythonImportsCheck = [ "pyathena" ];
meta = {
description = "Python DB API 2.0 (PEP 249) client for Amazon Athena";
homepage = "https://github.com/laughingman7743/PyAthena/";
changelog = "https://github.com/laughingman7743/PyAthena/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|