Merge pull request #112754 from r-ryantm/auto-update/python3.7-marshmallow-sqlalchemy

python37Packages.marshmallow-sqlalchemy: 0.24.1 -> 0.24.2
This commit is contained in:
Martin Weinelt 2021-02-12 01:03:02 +01:00 committed by GitHub
commit 55df57cb4a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,23 +1,35 @@
{ lib, buildPythonPackage, fetchPypi,
marshmallow, sqlalchemy
{ lib
, buildPythonPackage
, fetchPypi
, marshmallow
, sqlalchemy
, pytest-lazy-fixture
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "marshmallow-sqlalchemy";
version = "0.24.1";
meta = {
homepage = "https://github.com/marshmallow-code/marshmallow-sqlalchemy";
description = "SQLAlchemy integration with marshmallow ";
license = lib.licenses.mit;
};
version = "0.24.2";
src = fetchPypi {
inherit pname version;
sha256 = "d051cf013c075c43e1ee5c4b01f8fab6dd6b140dab6825be45875f674a0d289c";
sha256 = "ee3ead3b83de6608c6850ff60515691b0dc556ca226680f8a82b9f785cdb71b1";
};
propagatedBuildInputs = [ marshmallow sqlalchemy ];
propagatedBuildInputs = [
marshmallow
sqlalchemy
];
checkInputs = [
pytest-lazy-fixture
pytestCheckHook
];
meta = with lib; {
homepage = "https://github.com/marshmallow-code/marshmallow-sqlalchemy";
description = "SQLAlchemy integration with marshmallow ";
license = licenses.mit;
};
doCheck = false;
}