add pythonPackages.gunicorn

This commit is contained in:
Domen Kožar 2014-04-01 13:44:28 +00:00
parent db2f743156
commit 75fb34eb6d

View file

@ -3222,6 +3222,22 @@ rec {
};
};
gunicorn = buildPythonPackage rec {
name = "gunicorn-18.0";
src = fetchurl {
url = "http://pypi.python.org/packages/source/g/gunicorn/${name}.tar.gz";
md5 = "c7138b9ac7515a42066922d2b6120fbe";
};
buildInputs = [ pytest ];
meta = {
homepage = http://pypi.python.org/pypi/gunicorn;
description = "WSGI HTTP Server for UNIX";
};
};
hcs_utils = buildPythonPackage rec {
name = "hcs_utils-1.3";