blob: aa985a8fe238942be4c20114e51c1f819f011c3f (
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
50
51
52
53
54
55
56
57
58
59
60
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
mbstrdecoder,
setuptools,
setuptools-scm,
simplesqlite,
sqliteschema,
tabledata,
typepy,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "sqliteschema";
version = "2.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "thombashi";
repo = "sqliteschema";
tag = "v${version}";
hash = "sha256-ZGDzGfj78v8o0GvAHcP26JiJCOWPaIr2h1Lqzh5AuSg=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
mbstrdecoder
tabledata
typepy
];
nativeCheckInputs = [
pytestCheckHook
simplesqlite
sqliteschema
];
pythonImportsCheck = [ "sqliteschema" ];
# Enabling tests would trigger infinite recursion due to circular
# dependency between this package and simplesqlite.
# Therefore, we enable tests only when building passthru.tests.
doCheck = false;
passthru.tests.pytest = sqliteschema.overridePythonAttrs (_: {
doCheck = true;
});
meta = {
description = "Python library to dump table schema of a SQLite database file";
homepage = "https://github.com/thombashi/sqliteschema";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ henrirosten ];
};
}
|