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