about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix
blob: 6412e04f93d3421015a27ff1ddf7c1699e22f8a7 (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
{ lib, buildPythonPackage, fetchPypi,
  marshmallow, sqlalchemy
}:

buildPythonPackage rec {
  pname = "marshmallow-sqlalchemy";
  version = "0.16.2";

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "755e6e930c1ffe3430f62091085f0a51e0817b240986d931014f03b3556fff34";
  };

  propagatedBuildInputs = [ marshmallow sqlalchemy ];

  doCheck = false;
}