nixpkgs/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix
R. RyanTM d827b4253e python37Packages.marshmallow-sqlalchemy: 0.16.0 -> 0.16.1
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)
2019-04-07 13:53:45 +02:00

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;
}