blob: 330e003336822a57b72a46af85af764a95cde366 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
poetry-core,
# runtime
click,
peewee,
# tests
psycopg2,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "peewee-migrate";
version = "1.13.0";
pyproject = true;
src = fetchFromGitHub {
owner = "klen";
repo = "peewee_migrate";
tag = version;
hash = "sha256-sC63WH/4EmoQYfvl3HyBHDzT/jMZW/G7mTC138+ZHHU=";
};
postPatch = ''
sed -i '/addopts/d' pyproject.toml
'';
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
peewee
click
];
pythonImportsCheck = [ "peewee_migrate" ];
nativeCheckInputs = [
psycopg2
pytestCheckHook
];
disabledTests = [
# sqlite3.OperationalError: error in table order after drop column...
"test_migrator"
];
meta = {
description = "Simple migration engine for Peewee";
homepage = "https://github.com/klen/peewee_migrate";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ hexa ];
};
}
|