blob: 0c3b4b83ed5149127e35c05351101cefc5d59f4d (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
flask,
flask-sqlalchemy,
flit-core,
marshmallow,
marshmallow-sqlalchemy,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "flask-marshmallow";
version = "1.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "marshmallow-code";
repo = "flask-marshmallow";
tag = version;
hash = "sha256-dK2bE5mZiFh0nAN2yRpABT+SGG/UGWJ1oDtnD6bgyXk=";
};
build-system = [ flit-core ];
dependencies = [
flask
marshmallow
];
optional-dependencies = {
sqlalchemy = [
flask-sqlalchemy
marshmallow-sqlalchemy
];
};
nativeCheckInputs = [ pytestCheckHook ] ++ optional-dependencies.sqlalchemy;
pythonImportsCheck = [ "flask_marshmallow" ];
pytestFlags = [
"-Wignore::DeprecationWarning"
];
meta = {
description = "Flask + marshmallow for beautiful APIs";
homepage = "https://github.com/marshmallow-code/flask-marshmallow";
changelog = "https://github.com/marshmallow-code/flask-marshmallow/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ nickcao ];
};
}
|