blob: d60a9aa186e2d947b4459255cb4134dac0ce735c (
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,
buildPythonPackage,
fetchFromGitHub,
hatchling,
pytestCheckHook,
sqlalchemy,
wtforms,
}:
buildPythonPackage rec {
pname = "wtforms-sqlalchemy";
version = "0.4.2";
pyproject = true;
src = fetchFromGitHub {
owner = "wtforms";
repo = "wtforms-sqlalchemy";
tag = version;
hash = "sha256-E2F8lOcgne2yGEyn6g8j3mHr045eOyKu77DFGwWTPkc=";
};
build-system = [
hatchling
];
dependencies = [
sqlalchemy
wtforms
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "wtforms_sqlalchemy" ];
meta = {
description = "WTForms integration for SQLAlchemy";
homepage = "https://github.com/wtforms/wtforms-sqlalchemy";
changelog = "https://github.com/wtforms/wtforms-sqlalchemy/blob/${src.tag}/CHANGES.rst";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ SuperSandro2000 ];
};
}
|