##// END OF EJS Templates
nix: add pygments-markdown-lexer for highglighting markdown files
dan -
r1028:88f33e5e default
parent child Browse files
Show More
@@ -0,0 +1,12 b''
1 Copyright © 2015 Jürgen Hermann <jh@web.de>
2
3 Licensed under the Apache License, Version 2.0 (the "License");
4 you may not use this file except in compliance with the License.
5 You may obtain a copy of the License at
6 http://www.apache.org/licenses/LICENSE-2.0
7
8 Unless required by applicable law or agreed to in writing, software
9 distributed under the License is distributed on an "AS IS" BASIS,
10 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 See the License for the specific language governing permissions and
12 limitations under the License.
@@ -12,6 +12,8 b' permission notice:'
12 file:licenses/msgpack_license.txt
12 file:licenses/msgpack_license.txt
13 Copyright (c) 2009 - tornado
13 Copyright (c) 2009 - tornado
14 file:licenses/tornado_license.txt
14 file:licenses/tornado_license.txt
15 Copyright (c) 2015 - pygments-markdown-lexer
16 file:licenses/pygments_markdown_lexer_license.txt
15
17
16 All licensed under the Apache License, Version 2.0 (the "License");
18 All licensed under the Apache License, Version 2.0 (the "License");
17 you may not use this file except in compliance with the License.
19 you may not use this file except in compliance with the License.
@@ -1081,6 +1081,19 b''
1081 license = [ pkgs.lib.licenses.mit ];
1081 license = [ pkgs.lib.licenses.mit ];
1082 };
1082 };
1083 };
1083 };
1084 pygments-markdown-lexer = super.buildPythonPackage {
1085 name = "pygments-markdown-lexer-0.1.0.dev39";
1086 buildInputs = with self; [];
1087 doCheck = false;
1088 propagatedBuildInputs = with self; [Pygments];
1089 src = fetchurl {
1090 url = "https://pypi.python.org/packages/c3/12/674cdee66635d638cedb2c5d9c85ce507b7b2f91bdba29e482f1b1160ff6/pygments-markdown-lexer-0.1.0.dev39.zip";
1091 md5 = "6360fe0f6d1f896e35b7a0142ce6459c";
1092 };
1093 meta = {
1094 license = [ pkgs.lib.licenses.asl20 { fullName = "Apache"; } ];
1095 };
1096 };
1084 pyparsing = super.buildPythonPackage {
1097 pyparsing = super.buildPythonPackage {
1085 name = "pyparsing-1.5.7";
1098 name = "pyparsing-1.5.7";
1086 buildInputs = with self; [];
1099 buildInputs = with self; [];
@@ -1384,7 +1397,7 b''
1384 name = "rhodecode-enterprise-ce-4.5.0";
1397 name = "rhodecode-enterprise-ce-4.5.0";
1385 buildInputs = with self; [WebTest configobj cssselect lxml mock pytest pytest-cov pytest-runner pytest-sugar];
1398 buildInputs = with self; [WebTest configobj cssselect lxml mock pytest pytest-cov pytest-runner pytest-sugar];
1386 doCheck = true;
1399 doCheck = true;
1387 propagatedBuildInputs = with self; [Babel Beaker FormEncode Mako Markdown MarkupSafe MySQL-python Paste PasteDeploy PasteScript Pygments Pylons Pyro4 Routes SQLAlchemy Tempita URLObject WebError WebHelpers WebHelpers2 WebOb WebTest Whoosh alembic amqplib anyjson appenlight-client authomatic backport-ipaddress celery channelstream colander decorator deform docutils gevent gunicorn infrae.cache ipython iso8601 kombu msgpack-python 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 subprocess32 waitress zope.cachedescriptors dogpile.cache dogpile.core psutil py-bcrypt];
1400 propagatedBuildInputs = with self; [Babel Beaker FormEncode Mako Markdown MarkupSafe MySQL-python Paste PasteDeploy PasteScript Pygments Pylons Pyro4 Routes SQLAlchemy Tempita URLObject WebError WebHelpers WebHelpers2 WebOb WebTest Whoosh alembic amqplib anyjson appenlight-client authomatic backport-ipaddress celery channelstream colander decorator deform docutils gevent gunicorn infrae.cache ipython iso8601 kombu msgpack-python packaging psycopg2 py-gfm pycrypto pycurl pygments-markdown-lexer pyparsing pyramid pyramid-debugtoolbar pyramid-mako pyramid-beaker pysqlite python-dateutil python-ldap python-memcached python-pam recaptcha-client repoze.lru requests simplejson subprocess32 waitress zope.cachedescriptors dogpile.cache dogpile.core psutil py-bcrypt];
1388 src = ./.;
1401 src = ./.;
1389 meta = {
1402 meta = {
1390 license = [ { fullName = "AGPLv3, and Commercial License"; } ];
1403 license = [ { fullName = "AGPLv3, and Commercial License"; } ];
@@ -12,6 +12,7 b' Paste==2.0.2'
12 PasteDeploy==1.5.2
12 PasteDeploy==1.5.2
13 PasteScript==1.7.5
13 PasteScript==1.7.5
14 Pygments==2.1.3
14 Pygments==2.1.3
15 pygments-markdown-lexer==0.1.0.dev39
15
16
16 # TODO: This version is not available on PyPI
17 # TODO: This version is not available on PyPI
17 # Pylons==1.0.2.dev20160108
18 # Pylons==1.0.2.dev20160108
General Comments 0
You need to be logged in to leave comments. Login now