blob: 15aad8b2cdd80942207382851342ef374b366740 (
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
|
{
lib,
aiosqlite,
buildPythonPackage,
fetchFromGitHub,
setuptools,
six,
sqlalchemy,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "sqlalchemy-mixins";
version = "2.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "absent1706";
repo = "sqlalchemy-mixins";
tag = "v${version}";
hash = "sha256-0uB3x7RQSNEq3DyTSiOIGajwPQQEBjXK8HOyuXCNa/E=";
};
build-system = [ setuptools ];
dependencies = [
six
sqlalchemy
];
nativeCheckInputs = [
aiosqlite
pytestCheckHook
];
pythonImportsCheck = [ "sqlalchemy_mixins" ];
meta = {
description = "Python mixins for SQLAlchemy ORM";
homepage = "https://github.com/absent1706/sqlalchemy-mixins";
changelog = "https://github.com/absent1706/sqlalchemy-mixins/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|