##// 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 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 1695 repoze.lru = super.buildPythonPackage {
1683 1696 name = "repoze.lru-0.6";
1684 1697 buildInputs = with self; [];
@@ -1709,7 +1722,7 b''
1709 1722 name = "rhodecode-enterprise-ce-4.10.0";
1710 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 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 1726 src = ./.;
1714 1727 meta = {
1715 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 66 pytz==2015.4
67 67 pyzmq==14.6.0
68 68 recaptcha-client==1.0.6
69 redis==2.10.6
69 70 repoze.lru==0.6
70 71 requests==2.9.1
71 72 Routes==1.13
@@ -131,6 +131,7 b' install_requirements = ['
131 131 'python-memcached',
132 132 'python-pam',
133 133 'recaptcha-client',
134 'redis',
134 135 'repoze.lru',
135 136 'requests',
136 137 'simplejson',
General Comments 0
You need to be logged in to leave comments. Login now