{ 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; }