87ef847d13
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.6-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.15.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 = "1phqbbrq1xjvc7cwasy5zws4bdb050qikfp1qg8f1hqhmipkpiaz";
|
|
};
|
|
|
|
propagatedBuildInputs = [ marshmallow sqlalchemy ];
|
|
|
|
doCheck = false;
|
|
}
|