2018-01-20 11:48:55 +01:00
|
|
|
{ stdenv, fetchPypi, buildPythonPackage
|
2018-06-29 19:23:43 +02:00
|
|
|
, crayons, flask, flask-caching, gunicorn, maya, meinheld, whitenoise }:
|
2018-01-20 11:48:55 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "Flask-Common";
|
2018-06-12 18:47:00 +02:00
|
|
|
version = "0.3.0";
|
2018-01-20 11:48:55 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-06-12 18:47:00 +02:00
|
|
|
sha256 = "13d99f2dbc0a332b8bc4b2cc394d3e48f89672c266868e372cd9d7b433d921a9";
|
2018-01-20 11:48:55 +01:00
|
|
|
};
|
|
|
|
|
2018-06-29 19:23:43 +02:00
|
|
|
propagatedBuildInputs = [ crayons flask flask-caching gunicorn maya meinheld whitenoise ];
|
2018-01-20 11:48:55 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Flask extension with lots of common time-savers";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/kennethreitz/flask-common";
|
2018-01-20 11:48:55 +01:00
|
|
|
license = licenses.asl20; # XXX: setup.py lists BSD but git repo has Apache 2.0 LICENSE
|
|
|
|
};
|
|
|
|
}
|