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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
greenlet,
# optionals
aiomysql,
aiosqlite,
asyncmy,
asyncpg,
cx-oracle,
mariadb,
mypy,
mysql-connector,
mysqlclient,
pg8000,
psycopg2,
psycopg2cffi,
# TODO: pymssql
pymysql,
pyodbc,
# TODO: sqlcipher3
typing-extensions,
# tests
mock,
pytest-xdist,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "sqlalchemy";
version = "1.4.54";
pyproject = true;
src = fetchFromGitHub {
owner = "sqlalchemy";
repo = "sqlalchemy";
rev = "rel_${lib.replaceStrings [ "." ] [ "_" ] version}";
hash = "sha256-6qAjyqMVrugABHssAQuql3z1YHTAOSm5hARJuJXJJvo=";
};
postPatch = ''
sed -i '/tag_build = dev/d' setup.cfg
'';
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ greenlet ];
passthru.optional-dependencies = lib.fix (self: {
asyncio = [ greenlet ];
mypy = [ mypy ];
mssql = [ pyodbc ];
mssql_pymysql = [
# TODO: pymssql
];
mssql_pyodbc = [ pyodbc ];
mysql = [ mysqlclient ];
mysql_connector = [ mysql-connector ];
mariadb_connector = [ mariadb ];
oracle = [ cx-oracle ];
postgresql = [ psycopg2 ];
postgresql_pg8000 = [ pg8000 ];
postgresql_asyncpg = [ asyncpg ] ++ self.asyncio;
postgresql_psycopg2binary = [ psycopg2 ];
postgresql_psycopg2cffi = [ psycopg2cffi ];
pymysql = [ pymysql ];
aiomysql = [ aiomysql ] ++ self.asyncio;
asyncmy = [ asyncmy ] ++ self.asyncio;
aiosqlite = [
aiosqlite
typing-extensions
] ++ self.asyncio;
sqlcipher = [
# TODO: sqlcipher3
];
});
nativeCheckInputs = [
pytest-xdist
pytestCheckHook
mock
];
disabledTestPaths = [
# typing correctness, not interesting
"test/ext/mypy"
# slow and high memory usage, not interesting
"test/aaa_profiling"
];
pythonImportsCheck = [ "sqlalchemy" ];
meta = with lib; {
changelog = "https://github.com/sqlalchemy/sqlalchemy/releases/tag/rel_${
builtins.replaceStrings [ "." ] [ "_" ] version
}";
description = "Database Toolkit for Python";
homepage = "https://github.com/sqlalchemy/sqlalchemy";
license = licenses.mit;
};
}
|