nixpkgs/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix
2019-05-22 11:33:48 -07:00

24 lines
538 B
Nix

{ lib, buildPythonPackage, fetchPypi,
marshmallow, sqlalchemy
}:
buildPythonPackage rec {
pname = "marshmallow-sqlalchemy";
version = "0.16.3";
meta = {
homepage = "https://github.com/marshmallow-code/marshmallow-sqlalchemy";
description = "SQLAlchemy integration with marshmallow ";
license = lib.licenses.mit;
};
src = fetchPypi {
inherit pname version;
sha256 = "0qzpl53r58fk328cn41365c6jkliwmj41v16zkyjxb9d4s2mvn14";
};
propagatedBuildInputs = [ marshmallow sqlalchemy ];
doCheck = false;
}