Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / marshmallow-sqlalchemy / default.nix
blobba10c89e140533b055d93faa9d35cc781c8739bd
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , marshmallow
5 , sqlalchemy
6 , pytest-lazy-fixture
7 , pytestCheckHook
8 }:
10 buildPythonPackage rec {
11   pname = "marshmallow-sqlalchemy";
12   version = "0.24.2";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "ee3ead3b83de6608c6850ff60515691b0dc556ca226680f8a82b9f785cdb71b1";
17   };
19   propagatedBuildInputs = [
20     marshmallow
21     sqlalchemy
22   ];
24   checkInputs = [
25     pytest-lazy-fixture
26     pytestCheckHook
27   ];
29   meta = with lib; {
30     homepage = "https://github.com/marshmallow-code/marshmallow-sqlalchemy";
31     description = "SQLAlchemy integration with marshmallow ";
32     license = licenses.mit;
33   };