nixpkgs/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix
2018-08-25 18:07:13 +02:00

24 lines
550 B
Nix

{ lib, buildPythonPackage, fetchPypi,
marshmallow, sqlalchemy
}:
buildPythonPackage rec {
pname = "marshmallow-sqlalchemy";
version = "0.14.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 = "a42cdbd6b623059fca601e1b572cab28f00d4acf36e2cef38094c88424b3dcf1";
};
propagatedBuildInputs = [ marshmallow sqlalchemy ];
doCheck = false;
}