##// END OF EJS Templates
dependencies: added redis library to enable usage of redis backend for beaker.
marcink -
r2158:24e0f4b8 default
parent child Browse files
Show More
@@ -1679,6 +1679,19 b''
1679 license = [ { fullName = "MIT/X11"; } ];
1679 license = [ { fullName = "MIT/X11"; } ];
1680 };
1680 };
1681 };
1681 };
1682 redis = super.buildPythonPackage {
1683 name = "redis-2.10.6";
1684 buildInputs = with self; [];
1685 doCheck = false;
1686 propagatedBuildInputs = with self; [];
1687 src = fetchurl {
1688 url = "https://pypi.python.org/packages/09/8d/6d34b75326bf96d4139a2ddd8e74b80840f800a0a79f9294399e212cb9a7/redis-2.10.6.tar.gz";
1689 md5 = "048348d8cfe0b5d0bba2f4d835005c3b";
1690 };
1691 meta = {
1692 license = [ pkgs.lib.licenses.mit ];
1693 };
1694 };
1682 repoze.lru = super.buildPythonPackage {
1695 repoze.lru = super.buildPythonPackage {
1683 name = "repoze.lru-0.6";
1696 name = "repoze.lru-0.6";
1684 buildInputs = with self; [];
1697 buildInputs = with self; [];
@@ -1709,7 +1722,7 b''
1709 name = "rhodecode-enterprise-ce-4.10.0";
1722 name = "rhodecode-enterprise-ce-4.10.0";
1710 buildInputs = with self; [pytest py pytest-cov pytest-sugar pytest-runner pytest-catchlog pytest-profiling gprof2dot pytest-timeout mock WebTest cov-core coverage configobj];
1723 buildInputs = with self; [pytest py pytest-cov pytest-sugar pytest-runner pytest-catchlog pytest-profiling gprof2dot pytest-timeout mock WebTest cov-core coverage configobj];
1711 doCheck = true;
1724 doCheck = true;
1712 propagatedBuildInputs = with self; [Babel Beaker FormEncode Mako Markdown MarkupSafe MySQL-python Paste PasteDeploy PasteScript Pygments pygments-markdown-lexer Pylons Routes SQLAlchemy Tempita URLObject WebError WebHelpers WebHelpers2 WebOb WebTest Whoosh alembic amqplib anyjson appenlight-client authomatic cssselect celery channelstream colander decorator deform docutils gevent gunicorn infrae.cache ipython iso8601 kombu lxml msgpack-python nbconvert packaging psycopg2 py-gfm pycrypto pycurl pyparsing pyramid pyramid-debugtoolbar pyramid-mako pyramid-beaker pysqlite python-dateutil python-ldap python-memcached python-pam recaptcha-client repoze.lru requests simplejson sshpubkeys subprocess32 waitress zope.cachedescriptors dogpile.cache dogpile.core psutil py-bcrypt];
1725 propagatedBuildInputs = with self; [Babel Beaker FormEncode Mako Markdown MarkupSafe MySQL-python Paste PasteDeploy PasteScript Pygments pygments-markdown-lexer Pylons Routes SQLAlchemy Tempita URLObject WebError WebHelpers WebHelpers2 WebOb WebTest Whoosh alembic amqplib anyjson appenlight-client authomatic cssselect celery channelstream colander decorator deform docutils gevent gunicorn infrae.cache ipython iso8601 kombu lxml msgpack-python nbconvert packaging psycopg2 py-gfm pycrypto pycurl pyparsing pyramid pyramid-debugtoolbar pyramid-mako pyramid-beaker pysqlite python-dateutil python-ldap python-memcached python-pam recaptcha-client redis repoze.lru requests simplejson sshpubkeys subprocess32 waitress zope.cachedescriptors dogpile.cache dogpile.core psutil py-bcrypt];
1713 src = ./.;
1726 src = ./.;
1714 meta = {
1727 meta = {
1715 license = [ { fullName = "Affero GNU General Public License v3 or later (AGPLv3+)"; } { fullName = "AGPLv3, and Commercial License"; } ];
1728 license = [ { fullName = "Affero GNU General Public License v3 or later (AGPLv3+)"; } { fullName = "AGPLv3, and Commercial License"; } ];
@@ -66,6 +66,7 b' python-pam==1.8.2'
66 pytz==2015.4
66 pytz==2015.4
67 pyzmq==14.6.0
67 pyzmq==14.6.0
68 recaptcha-client==1.0.6
68 recaptcha-client==1.0.6
69 redis==2.10.6
69 repoze.lru==0.6
70 repoze.lru==0.6
70 requests==2.9.1
71 requests==2.9.1
71 Routes==1.13
72 Routes==1.13
@@ -131,6 +131,7 b' install_requirements = ['
131 'python-memcached',
131 'python-memcached',
132 'python-pam',
132 'python-pam',
133 'recaptcha-client',
133 'recaptcha-client',
134 'redis',
134 'repoze.lru',
135 'repoze.lru',
135 'requests',
136 'requests',
136 'simplejson',
137 'simplejson',
General Comments 0
You need to be logged in to leave comments. Login now