1{ stdenv, fetchPypi, buildPythonPackage
2, crayons, flask, flask_cache, gunicorn, maya, meinheld, whitenoise }:
3
4buildPythonPackage rec {
5 pname = "Flask-Common";
6 version = "0.2.0";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "1f6ibvkxpxgczxs4qcbh5bj8rf9ggggbagi2dkaphx5w29xbbys4";
11 };
12
13 propagatedBuildInputs = [ crayons flask flask_cache gunicorn maya meinheld whitenoise ];
14
15 meta = with stdenv.lib; {
16 description = "Flask extension with lots of common time-savers";
17 homepage = https://github.com/kennethreitz/flask-common;
18 license = licenses.asl20; # XXX: setup.py lists BSD but git repo has Apache 2.0 LICENSE
19 };
20}