1{ lib, buildPythonPackage, fetchPypi,
2 marshmallow, sqlalchemy
3}:
4
5buildPythonPackage rec {
6 pname = "marshmallow-sqlalchemy";
7 version = "0.23.1";
8
9 meta = {
10 homepage = "https://github.com/marshmallow-code/marshmallow-sqlalchemy";
11 description = "SQLAlchemy integration with marshmallow ";
12 license = lib.licenses.mit;
13 };
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "0ef59c8da8da2e18e808e3880158049e9d72f3031c84cc804b6c533a0eb668a9";
18 };
19
20 propagatedBuildInputs = [ marshmallow sqlalchemy ];
21
22 doCheck = false;
23}