10 , marshmallow-sqlalchemy
13 buildPythonPackage rec {
14 pname = "flask-marshmallow";
16 format = "setuptools";
18 disabled = pythonOlder "3.7";
20 src = fetchFromGitHub {
21 owner = "marshmallow-code";
22 repo = "flask-marshmallow";
23 rev = "refs/tags/${version}";
24 hash = "sha256-N21M/MzcvOaDh5BgbbZtNcpRAULtWGLTMberCfOUoEM=";
27 propagatedBuildInputs = [
35 ] ++ passthru.optional-dependencies.sqlalchemy;
37 pythonImportsCheck = [
41 passthru.optional-dependencies = {
44 marshmallow-sqlalchemy
49 description = "Flask + marshmallow for beautiful APIs";
50 homepage = "https://github.com/marshmallow-code/flask-marshmallow";
51 changelog = "https://github.com/marshmallow-code/flask-marshmallow/releases/tag/${version}";
52 license = lib.licenses.mit;
53 maintainers = with lib.maintainers; [ nickcao ];