nixpkgs/pkgs/development/python-modules/flask-marshmallow/default.nix
R. RyanTM 72142c29ee python37Packages.flask_marshmallow: 0.9.0 -> 0.10.0
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-flask-marshmallow/versions

(cherry picked from commit 78d8f66e6c5aa547f71ff89798f44c051913cd66)
2019-04-07 13:53:40 +02:00

25 lines
547 B
Nix

{ lib, buildPythonPackage, fetchPypi,
flask, six, marshmallow
}:
buildPythonPackage rec {
pname = "flask-marshmallow";
version = "0.10.0";
meta = {
homepage = "https://github.com/marshmallow-code/flask-marshmallow";
description = "Flask + marshmallow for beautiful APIs";
license = lib.licenses.mit;
};
src = fetchPypi {
inherit pname version;
sha256 = "1xvk289628l3pp56gidwhmd54cgdczpsxhxfw0bfcsd120k1svfv";
};
propagatedBuildInputs = [ flask marshmallow ];
buildInputs = [ six ];
doCheck = false;
}