nixpkgs/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix
2017-10-27 21:34:42 +02:00

25 lines
582 B
Nix

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