d9ff8bf692
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
24 lines
538 B
Nix
24 lines
538 B
Nix
{ lib, buildPythonPackage, fetchPypi,
|
|
marshmallow, sqlalchemy
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "marshmallow-sqlalchemy";
|
|
version = "0.17.0";
|
|
|
|
meta = {
|
|
homepage = "https://github.com/marshmallow-code/marshmallow-sqlalchemy";
|
|
description = "SQLAlchemy integration with marshmallow ";
|
|
license = lib.licenses.mit;
|
|
};
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "17pnbv28n9vy3q66ckxfdbb9k1riy6s8lg63zfm5jsx00f0zqqnn";
|
|
};
|
|
|
|
propagatedBuildInputs = [ marshmallow sqlalchemy ];
|
|
|
|
doCheck = false;
|
|
}
|