python.pkgs.flask-common: init at 0.2.0
This commit is contained in:
parent
6c5149f51a
commit
efb915e020
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
|
||||
};
|
||||
}
|
@ -8045,6 +8045,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
flask-common = callPackage ../development/python-modules/flask-common { };
|
||||
|
||||
flask-compress = callPackage ../development/python-modules/flask-compress { };
|
||||
|
||||
flask-cors = callPackage ../development/python-modules/flask-cors { };
|
||||
|
Loading…
Reference in New Issue
Block a user