pythonPackages.marshmallow-sqlalchemy: init at 0.13.1

This commit is contained in:
betaboon 2017-09-01 10:27:02 +02:00 committed by Frederik Rietdijk
parent 7a33723155
commit 820aa5fef9
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ 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;
}

View File

@ -11911,6 +11911,8 @@ in {
marshmallow = callPackage ../development/python-modules/marshmallow { };
marshmallow-sqlalchemy = callPackage ../development/python-modules/marshmallow-sqlalchemy { };
manuel = buildPythonPackage rec {
name = "manuel-${version}";
version = "1.8.0";