nixpkgs/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix
Frederik Rietdijk c51b089392 Merge pull request #29009 from FRidh/python-fixes-2
Python: several fixes (2)
(cherry picked from commit aabadda0c2)
2017-09-07 10:23:26 +02:00

24 lines
570 B
Nix

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