summary refs log tree commit diff
path: root/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix
blob: a024d73037f90d3b8755ab3f367172fe0d8e5be1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, buildPythonPackage, fetchPypi,
  marshmallow, sqlalchemy
}:

buildPythonPackage rec {
  pname = "marshmallow-sqlalchemy";
  name = "${pname}-${version}";
  version = "0.13.1";

  meta = {
    homepage = "https://github.com/marshmallow-code/marshmallow-sqlalchemy";
    description = "SQLAlchemy integration with marshmallow ";
    license = lib.licenses.mit;
  };

  src = fetchPypi {
    inherit pname version;
    sha256 = "0082ca2wwc9bymzkp1mr1l5h6rq0k1csv3vcq8ab24x0hdyg5qgk";
  };

  propagatedBuildInputs = [ marshmallow sqlalchemy ];

  doCheck = false;
}