python.pkgs.flask-common: init at 0.2.0
This commit is contained in:
20
pkgs/development/python-modules/flask-common/default.nix
Normal file
20
pkgs/development/python-modules/flask-common/default.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{ stdenv, fetchPypi, buildPythonPackage
|
||||
, crayons, flask, flask_cache, gunicorn, maya, meinheld, whitenoise }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "Flask-Common";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1f6ibvkxpxgczxs4qcbh5bj8rf9ggggbagi2dkaphx5w29xbbys4";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ crayons flask flask_cache gunicorn maya meinheld whitenoise ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Flask extension with lots of common time-savers";
|
||||
homepage = https://github.com/kennethreitz/flask-common;
|
||||
license = licenses.asl20; # XXX: setup.py lists BSD but git repo has Apache 2.0 LICENSE
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user