python3Packages.marshmallow-sqlalchemy: 0.24.2 -> 0.25.0

This commit is contained in:
Martin Weinelt 2021-05-06 02:00:01 +02:00 committed by Jonathan Ringer
parent 9974c90a15
commit ce09a10d5c

View File

@ -1,5 +1,6 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, marshmallow
, sqlalchemy
@ -9,11 +10,12 @@
buildPythonPackage rec {
pname = "marshmallow-sqlalchemy";
version = "0.24.2";
version = "0.25.0";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "ee3ead3b83de6608c6850ff60515691b0dc556ca226680f8a82b9f785cdb71b1";
sha256 = "0i39ckrixh1w9fmkm0wl868gvza72j5la0x6dd0cij9shf1iyjgi";
};
propagatedBuildInputs = [
@ -21,6 +23,10 @@ buildPythonPackage rec {
sqlalchemy
];
pythonImportsCheck = [
"marshmallow_sqlalchemy"
];
checkInputs = [
pytest-lazy-fixture
pytestCheckHook
@ -28,7 +34,7 @@ buildPythonPackage rec {
meta = with lib; {
homepage = "https://github.com/marshmallow-code/marshmallow-sqlalchemy";
description = "SQLAlchemy integration with marshmallow ";
description = "SQLAlchemy integration with marshmallow";
license = licenses.mit;
};