1{ lib
2, buildPythonPackage
3, fetchPypi
4, marshmallow
5, sqlalchemy
6, pytest-lazy-fixture
7, pytestCheckHook
8}:
9
10buildPythonPackage rec {
11 pname = "marshmallow-sqlalchemy";
12 version = "0.24.2";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "ee3ead3b83de6608c6850ff60515691b0dc556ca226680f8a82b9f785cdb71b1";
17 };
18
19 propagatedBuildInputs = [
20 marshmallow
21 sqlalchemy
22 ];
23
24 checkInputs = [
25 pytest-lazy-fixture
26 pytestCheckHook
27 ];
28
29 meta = with lib; {
30 homepage = "https://github.com/marshmallow-code/marshmallow-sqlalchemy";
31 description = "SQLAlchemy integration with marshmallow ";
32 license = licenses.mit;
33 };
34
35}