d827b4253e
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-marshmallow-sqlalchemy/versions (cherry picked from commit 277252ba4baeddb6a07ab8a81e03c62a1048f5d8)
23 lines
538 B
Nix
23 lines
538 B
Nix
{ lib, buildPythonPackage, fetchPypi,
|
|
marshmallow, sqlalchemy
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "marshmallow-sqlalchemy";
|
|
version = "0.16.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 = "0dv9imc41xg0k9xv0fb8ygfip7iznsnf8g33z74zz2bf1dbhricr";
|
|
};
|
|
|
|
propagatedBuildInputs = [ marshmallow sqlalchemy ];
|
|
|
|
doCheck = false;
|
|
}
|