9 marshmallow-sqlalchemy,
14 buildPythonPackage rec {
15 pname = "flask-marshmallow";
19 disabled = pythonOlder "3.8";
21 src = fetchFromGitHub {
22 owner = "marshmallow-code";
23 repo = "flask-marshmallow";
24 rev = "refs/tags/${version}";
25 hash = "sha256-GQLkt/CJf/QI8emvlW8xSRziGnncwfMSxBccW0Bb8I0=";
28 nativeBuildInputs = [ flit-core ];
30 propagatedBuildInputs = [
35 optional-dependencies = {
38 marshmallow-sqlalchemy
42 nativeCheckInputs = [ pytestCheckHook ] ++ optional-dependencies.sqlalchemy;
44 pythonImportsCheck = [ "flask_marshmallow" ];
48 "ignore::DeprecationWarning"
52 description = "Flask + marshmallow for beautiful APIs";
53 homepage = "https://github.com/marshmallow-code/flask-marshmallow";
54 changelog = "https://github.com/marshmallow-code/flask-marshmallow/releases/tag/${version}";
55 license = lib.licenses.mit;
56 maintainers = with lib.maintainers; [ nickcao ];