blob: 542f40647f0d6381b7c4c3f2a6b87c3ef8f4b819 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
setuptools,
formencode,
pastedeploy,
paste,
pydispatcher,
}:
buildPythonPackage rec {
pname = "sqlobject";
version = "3.13.0";
pyproject = true;
src = fetchFromGitHub {
owner = "sqlobject";
repo = "sqlobject";
tag = version;
hash = "sha256-KcpbGqNsR77kwbTLKwvwWpyLvF1UowIsKM7Kirs7Zw4=";
};
build-system = [ setuptools ];
dependencies = [
formencode
paste
pastedeploy
pydispatcher
];
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
# https://github.com/sqlobject/sqlobject/issues/179
"test_fail"
];
pythonImportsCheck = [ "sqlobject" ];
meta = {
description = "Object Relational Manager for providing an object interface to your database";
homepage = "https://www.sqlobject.org/";
changelog = "https://github.com/sqlobject/sqlobject/blob/${version}/docs/News.rst";
license = lib.licenses.lgpl21Only;
maintainers = [ ];
};
}
|