mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
python.pkgs.flask-common: init at 0.2.0
This commit is contained in:
parent
6c5149f51a
commit
efb915e020
2 changed files with 22 additions and 0 deletions
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
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue