depot/third_party/nixpkgs/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix
Default email 2ce89355c3 Project import generated by Copybara.
GitOrigin-RevId: 22a81aa5fc15b2d41b12f7160a71cd4a9f3c3fa1
2020-06-15 17:56:04 +02:00

23 lines
550 B
Nix

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