##// END OF EJS Templates
dependencies: bumped http servers, including gunicorn....
marcink -
r238:8db88328 default
parent child Browse files
Show More
@@ -224,13 +224,13 b''
224 };
224 };
225 };
225 };
226 gunicorn = super.buildPythonPackage {
226 gunicorn = super.buildPythonPackage {
227 name = "gunicorn-19.6.0";
227 name = "gunicorn-19.7.1";
228 buildInputs = with self; [];
228 buildInputs = with self; [];
229 doCheck = false;
229 doCheck = false;
230 propagatedBuildInputs = with self; [];
230 propagatedBuildInputs = with self; [];
231 src = fetchurl {
231 src = fetchurl {
232 url = "https://pypi.python.org/packages/84/ce/7ea5396efad1cef682bbc4068e72a0276341d9d9d0f501da609fab9fcb80/gunicorn-19.6.0.tar.gz";
232 url = "https://pypi.python.org/packages/30/3a/10bb213cede0cc4d13ac2263316c872a64bf4c819000c8ccd801f1d5f822/gunicorn-19.7.1.tar.gz";
233 md5 = "338e5e8a83ea0f0625f768dba4597530";
233 md5 = "174d3c3cd670a5be0404d84c484e590c";
234 };
234 };
235 meta = {
235 meta = {
236 license = [ pkgs.lib.licenses.mit ];
236 license = [ pkgs.lib.licenses.mit ];
@@ -741,13 +741,13 b''
741 };
741 };
742 };
742 };
743 waitress = super.buildPythonPackage {
743 waitress = super.buildPythonPackage {
744 name = "waitress-1.0.1";
744 name = "waitress-1.0.2";
745 buildInputs = with self; [];
745 buildInputs = with self; [];
746 doCheck = false;
746 doCheck = false;
747 propagatedBuildInputs = with self; [];
747 propagatedBuildInputs = with self; [];
748 src = fetchurl {
748 src = fetchurl {
749 url = "https://pypi.python.org/packages/78/7d/84d11b96c3f60164dec3bef4a859a03aeae0231aa93f57fbe0d05fa4ff36/waitress-1.0.1.tar.gz";
749 url = "https://pypi.python.org/packages/cd/f4/400d00863afa1e03618e31fd7e2092479a71b8c9718b00eb1eeb603746c6/waitress-1.0.2.tar.gz";
750 md5 = "dda92358a7569669086155923a46e57c";
750 md5 = "b968f39e95d609f6194c6e50425d4bb7";
751 };
751 };
752 meta = {
752 meta = {
753 license = [ pkgs.lib.licenses.zpt21 ];
753 license = [ pkgs.lib.licenses.zpt21 ];
@@ -27,14 +27,15 b' wheel==0.29.0'
27 zope.deprecation==4.1.2
27 zope.deprecation==4.1.2
28 zope.interface==4.1.3
28 zope.interface==4.1.3
29
29
30 ## http servers
31 gevent==1.2.2
32 greenlet==0.4.12
33 gunicorn==19.7.1
34 waitress==1.0.2
35
30 ## debug
36 ## debug
31 ipdb==0.10.1
37 ipdb==0.10.1
32 ipython==5.1.0
38 ipython==5.1.0
33 # http servers
34 gevent==1.1.2
35 greenlet==0.4.10
36 gunicorn==19.6.0
37 waitress==1.0.1
38
39
39 ## test related requirements
40 ## test related requirements
40 -r requirements_test.txt
41 -r requirements_test.txt
General Comments 0
You need to be logged in to leave comments. Login now