blob: 8d4f18732aa63e2b36b74b9a2c0259847f463863 (
plain)
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
agate,
setuptools,
sqlalchemy,
pytestCheckHook,
geojson,
}:
buildPythonPackage (finalAttrs: {
pname = "agate-sql";
version = "0.7.3";
pyproject = true;
src = fetchFromGitHub {
owner = "wireservice";
repo = "agate-sql";
tag = finalAttrs.version;
hash = "sha256-YPpvLMidW0RnNz1x6FK1QwhOIc9AhwnSm6vxUzbLLBM=";
};
build-system = [ setuptools ];
dependencies = [
agate
sqlalchemy
];
nativeCheckInputs = [
geojson
pytestCheckHook
];
pythonImportsCheck = [ "agatesql" ];
disabledTests = [
# requires crate (sqlalchemy-cratedb)
"test_to_sql_create_statement_with_dialects"
];
meta = {
description = "Adds SQL read/write support to agate";
homepage = "https://github.com/wireservice/agate-sql";
license = lib.licenses.mit;
maintainers = [ ];
};
})
|