##// END OF EJS Templates
dependencies: made all dependencies lowercase, helps with diffing other projects, and keeps proper order.
marcink -
r2718:a716017a default
parent child Browse files
Show More
@@ -183,7 +183,7 b' let'
183 ln -s ${self.pyramid}/bin/* $out/bin/
183 ln -s ${self.pyramid}/bin/* $out/bin/
184 ln -s ${self.gunicorn}/bin/gunicorn $out/bin/
184 ln -s ${self.gunicorn}/bin/gunicorn $out/bin/
185 ln -s ${self.supervisor}/bin/supervisor* $out/bin/
185 ln -s ${self.supervisor}/bin/supervisor* $out/bin/
186 ln -s ${self.PasteScript}/bin/paster $out/bin/
186 ln -s ${self.pastescript}/bin/paster $out/bin/
187 ln -s ${self.channelstream}/bin/channelstream $out/bin/
187 ln -s ${self.channelstream}/bin/channelstream $out/bin/
188 ln -s ${self.celery}/bin/celery $out/bin/
188 ln -s ${self.celery}/bin/celery $out/bin/
189
189
@@ -25,7 +25,7 b' self: super: {'
25 };
25 };
26 });
26 });
27
27
28 Beaker = super.Beaker.override (attrs: {
28 beaker = super.beaker.override (attrs: {
29 patches = [
29 patches = [
30 ./patch-beaker-lock-func-debug.diff
30 ./patch-beaker-lock-func-debug.diff
31 ];
31 ];
@@ -83,7 +83,7 b' self: super: {'
83 ];
83 ];
84 });
84 });
85
85
86 MySQL-python = super.MySQL-python.override (attrs: {
86 mysql-python = super.mysql-python.override (attrs: {
87 buildInputs = attrs.buildInputs ++ [
87 buildInputs = attrs.buildInputs ++ [
88 pkgs.openssl
88 pkgs.openssl
89 ];
89 ];
@@ -185,7 +185,7 b' self: super: {'
185 '';
185 '';
186 });
186 });
187
187
188 URLObject = super.URLObject.override (attrs: {
188 urlobject = super.urlobject.override (attrs: {
189 meta = {
189 meta = {
190 license = {
190 license = {
191 spdxId = "Unlicense";
191 spdxId = "Unlicense";
This diff has been collapsed as it changes many lines, (635 lines changed) Show them Hide them
@@ -2,313 +2,14 b''
2 # See https://github.com/johbo/pip2nix
2 # See https://github.com/johbo/pip2nix
3
3
4 {
4 {
5 Babel = super.buildPythonPackage {
5 alembic = super.buildPythonPackage {
6 name = "Babel-1.3";
6 name = "alembic-0.9.9";
7 buildInputs = with self; [];
8 doCheck = false;
9 propagatedBuildInputs = with self; [pytz];
10 src = fetchurl {
11 url = "https://files.pythonhosted.org/packages/33/27/e3978243a03a76398c384c83f7ca879bc6e8f1511233a621fcada135606e/Babel-1.3.tar.gz";
12 sha256 = "9f02d0357184de1f093c10012b52e7454a1008be6a5c185ab7a3307aceb1d12e";
13 };
14 meta = {
15 license = [ pkgs.lib.licenses.bsdOriginal ];
16 };
17 };
18 Beaker = super.buildPythonPackage {
19 name = "Beaker-1.9.1";
20 buildInputs = with self; [];
21 doCheck = false;
22 propagatedBuildInputs = with self; [funcsigs];
23 src = fetchurl {
24 url = "https://files.pythonhosted.org/packages/ca/14/a626188d0d0c7b55dd7cf1902046c2743bd392a7078bb53073e13280eb1e/Beaker-1.9.1.tar.gz";
25 sha256 = "32276ed686ab7203baf60520452903e35d1c3515f632683ea4a5881c8cd55921";
26 };
27 meta = {
28 license = [ pkgs.lib.licenses.bsdOriginal ];
29 };
30 };
31 CProfileV = super.buildPythonPackage {
32 name = "CProfileV-1.0.7";
33 buildInputs = with self; [];
34 doCheck = false;
35 propagatedBuildInputs = with self; [bottle];
36 src = fetchurl {
37 url = "https://files.pythonhosted.org/packages/df/50/d8c1ada7d537c64b0f76453fa31dedb6af6e27b82fcf0331e5f71a4cf98b/CProfileV-1.0.7.tar.gz";
38 sha256 = "8791748b1f3d3468c2c927c3fd5f905080b84d8f2d217ca764b7d9d7a1fb9a77";
39 };
40 meta = {
41 license = [ pkgs.lib.licenses.mit ];
42 };
43 };
44 Chameleon = super.buildPythonPackage {
45 name = "Chameleon-2.24";
46 buildInputs = with self; [];
47 doCheck = false;
48 propagatedBuildInputs = with self; [];
49 src = fetchurl {
50 url = "https://files.pythonhosted.org/packages/5a/9e/637379ffa13c5172b5c0e704833ffea6bf51cec7567f93fd6e903d53ed74/Chameleon-2.24.tar.gz";
51 sha256 = "452e9580040ed8541062b16e21eaef4231dd5ed8da3ad9548246b9eef5c9787a";
52 };
53 meta = {
54 license = [ { fullName = "BSD-like (http://repoze.org/license.html)"; } ];
55 };
56 };
57 FormEncode = super.buildPythonPackage {
58 name = "FormEncode-1.2.4";
59 buildInputs = with self; [];
60 doCheck = false;
61 propagatedBuildInputs = with self; [];
62 src = fetchurl {
63 url = "https://files.pythonhosted.org/packages/8e/59/0174271a6f004512e0201188593e6d319db139d14cb7490e488bbb078015/FormEncode-1.2.4.tar.gz";
64 sha256 = "8270840ee832055463b3d3328f8ae4b881e1fbe84353c97af1d913df3401feb9";
65 };
66 meta = {
67 license = [ pkgs.lib.licenses.psfl ];
68 };
69 };
70 Jinja2 = super.buildPythonPackage {
71 name = "Jinja2-2.9.6";
72 buildInputs = with self; [];
73 doCheck = false;
74 propagatedBuildInputs = with self; [MarkupSafe];
75 src = fetchurl {
76 url = "https://files.pythonhosted.org/packages/90/61/f820ff0076a2599dd39406dcb858ecb239438c02ce706c8e91131ab9c7f1/Jinja2-2.9.6.tar.gz";
77 sha256 = "ddaa01a212cd6d641401cb01b605f4a4d9f37bfc93043d7f760ec70fb99ff9ff";
78 };
79 meta = {
80 license = [ pkgs.lib.licenses.bsdOriginal ];
81 };
82 };
83 Mako = super.buildPythonPackage {
84 name = "Mako-1.0.7";
85 buildInputs = with self; [];
86 doCheck = false;
87 propagatedBuildInputs = with self; [MarkupSafe];
88 src = fetchurl {
89 url = "https://files.pythonhosted.org/packages/eb/f3/67579bb486517c0d49547f9697e36582cd19dafb5df9e687ed8e22de57fa/Mako-1.0.7.tar.gz";
90 sha256 = "4e02fde57bd4abb5ec400181e4c314f56ac3e49ba4fb8b0d50bba18cb27d25ae";
91 };
92 meta = {
93 license = [ pkgs.lib.licenses.mit ];
94 };
95 };
96 Markdown = super.buildPythonPackage {
97 name = "Markdown-2.6.11";
98 buildInputs = with self; [];
99 doCheck = false;
100 propagatedBuildInputs = with self; [];
101 src = fetchurl {
102 url = "https://files.pythonhosted.org/packages/b3/73/fc5c850f44af5889192dff783b7b0d8f3fe8d30b65c8e3f78f8f0265fecf/Markdown-2.6.11.tar.gz";
103 sha256 = "a856869c7ff079ad84a3e19cd87a64998350c2b94e9e08e44270faef33400f81";
104 };
105 meta = {
106 license = [ pkgs.lib.licenses.bsdOriginal ];
107 };
108 };
109 MarkupSafe = super.buildPythonPackage {
110 name = "MarkupSafe-1.0";
111 buildInputs = with self; [];
112 doCheck = false;
113 propagatedBuildInputs = with self; [];
114 src = fetchurl {
115 url = "https://files.pythonhosted.org/packages/4d/de/32d741db316d8fdb7680822dd37001ef7a448255de9699ab4bfcbdf4172b/MarkupSafe-1.0.tar.gz";
116 sha256 = "a6be69091dac236ea9c6bc7d012beab42010fa914c459791d627dad4910eb665";
117 };
118 meta = {
119 license = [ pkgs.lib.licenses.bsdOriginal ];
120 };
121 };
122 MySQL-python = super.buildPythonPackage {
123 name = "MySQL-python-1.2.5";
124 buildInputs = with self; [];
125 doCheck = false;
126 propagatedBuildInputs = with self; [];
127 src = fetchurl {
128 url = "https://files.pythonhosted.org/packages/a5/e9/51b544da85a36a68debe7a7091f068d802fc515a3a202652828c73453cad/MySQL-python-1.2.5.zip";
129 sha256 = "811040b647e5d5686f84db415efd697e6250008b112b6909ba77ac059e140c74";
130 };
131 meta = {
132 license = [ pkgs.lib.licenses.gpl1 ];
133 };
134 };
135 Paste = super.buildPythonPackage {
136 name = "Paste-2.0.3";
137 buildInputs = with self; [];
138 doCheck = false;
139 propagatedBuildInputs = with self; [six];
140 src = fetchurl {
141 url = "https://files.pythonhosted.org/packages/30/c3/5c2f7c7a02e4f58d4454353fa1c32c94f79fa4e36d07a67c0ac295ea369e/Paste-2.0.3.tar.gz";
142 sha256 = "2346a347824c32641bf020c17967b49ae74d3310ec1bc9b958d4b84e2d985218";
143 };
144 meta = {
145 license = [ pkgs.lib.licenses.mit ];
146 };
147 };
148 PasteDeploy = super.buildPythonPackage {
149 name = "PasteDeploy-1.5.2";
150 buildInputs = with self; [];
7 buildInputs = with self; [];
151 doCheck = false;
8 doCheck = false;
152 propagatedBuildInputs = with self; [];
9 propagatedBuildInputs = with self; [sqlalchemy mako python-editor python-dateutil];
153 src = fetchurl {
154 url = "https://files.pythonhosted.org/packages/0f/90/8e20cdae206c543ea10793cbf4136eb9a8b3f417e04e40a29d72d9922cbd/PasteDeploy-1.5.2.tar.gz";
155 sha256 = "d5858f89a255e6294e63ed46b73613c56e3b9a2d82a42f1df4d06c8421a9e3cb";
156 };
157 meta = {
158 license = [ pkgs.lib.licenses.mit ];
159 };
160 };
161 PasteScript = super.buildPythonPackage {
162 name = "PasteScript-2.0.2";
163 buildInputs = with self; [];
164 doCheck = false;
165 propagatedBuildInputs = with self; [Paste PasteDeploy six];
166 src = fetchurl {
167 url = "https://files.pythonhosted.org/packages/e5/f0/78e766c3dcc61a4f3a6f71dd8c95168ae9c7a31722b5663d19c1fdf62cb6/PasteScript-2.0.2.tar.gz";
168 sha256 = "c03f249805538cc2328741ae8d262a9200ae1c993119b3d9bac4cd422cb476c0";
169 };
170 meta = {
171 license = [ pkgs.lib.licenses.mit ];
172 };
173 };
174 Pygments = super.buildPythonPackage {
175 name = "Pygments-2.2.0";
176 buildInputs = with self; [];
177 doCheck = false;
178 propagatedBuildInputs = with self; [];
179 src = fetchurl {
180 url = "https://files.pythonhosted.org/packages/71/2a/2e4e77803a8bd6408a2903340ac498cb0a2181811af7c9ec92cb70b0308a/Pygments-2.2.0.tar.gz";
181 sha256 = "dbae1046def0efb574852fab9e90209b23f556367b5a320c0bcb871c77c3e8cc";
182 };
183 meta = {
184 license = [ pkgs.lib.licenses.bsdOriginal ];
185 };
186 };
187 Routes = super.buildPythonPackage {
188 name = "Routes-2.4.1";
189 buildInputs = with self; [];
190 doCheck = false;
191 propagatedBuildInputs = with self; [six repoze.lru];
192 src = fetchurl {
193 url = "https://files.pythonhosted.org/packages/33/38/ea827837e68d9c7dde4cff7ec122a93c319f0effc08ce92a17095576603f/Routes-2.4.1.tar.gz";
194 sha256 = "26ee43340fca5a32769ffe0c58edcb396ccce6bc1dfa689ddf844d50877355fd";
195 };
196 meta = {
197 license = [ pkgs.lib.licenses.mit ];
198 };
199 };
200 Tempita = super.buildPythonPackage {
201 name = "Tempita-0.5.2";
202 buildInputs = with self; [];
203 doCheck = false;
204 propagatedBuildInputs = with self; [];
205 src = fetchurl {
206 url = "https://files.pythonhosted.org/packages/56/c8/8ed6eee83dbddf7b0fc64dd5d4454bc05e6ccaafff47991f73f2894d9ff4/Tempita-0.5.2.tar.gz";
207 sha256 = "cacecf0baa674d356641f1d406b8bff1d756d739c46b869a54de515d08e6fc9c";
208 };
209 meta = {
210 license = [ pkgs.lib.licenses.mit ];
211 };
212 };
213 URLObject = super.buildPythonPackage {
214 name = "URLObject-2.4.0";
215 buildInputs = with self; [];
216 doCheck = false;
217 propagatedBuildInputs = with self; [];
218 src = fetchurl {
219 url = "https://files.pythonhosted.org/packages/cb/b6/e25e58500f9caef85d664bec71ec67c116897bfebf8622c32cb75d1ca199/URLObject-2.4.0.tar.gz";
220 sha256 = "f51272b12846db98af530b0a64f6593d2b1e8405f0aa580285b37ce8009b8d9c";
221 };
222 meta = {
223 license = [ ];
224 };
225 };
226 WebError = super.buildPythonPackage {
227 name = "WebError-0.10.3";
228 buildInputs = with self; [];
229 doCheck = false;
230 propagatedBuildInputs = with self; [WebOb Tempita Pygments Paste];
231 src = fetchurl {
10 src = fetchurl {
232 url = "https://files.pythonhosted.org/packages/35/76/e7e5c2ce7e9c7f31b54c1ff295a495886d1279a002557d74dd8957346a79/WebError-0.10.3.tar.gz";
11 url = "https://files.pythonhosted.org/packages/89/03/756d5b8e1c90bf283c3f435766aa3f20208d1c3887579dd8f2122e01d5f4/alembic-0.9.9.tar.gz";
233 sha256 = "a6cb354ff921aad008336599b5e56622ebbe8c76d86985e22af262e6f7242f3b";
12 sha256 = "85bd3ea7633024e4930900bc64fb58f9742dedbc6ebb6ecf25be2ea9a3c1b32e";
234 };
235 meta = {
236 license = [ pkgs.lib.licenses.mit ];
237 };
238 };
239 WebHelpers = super.buildPythonPackage {
240 name = "WebHelpers-1.3";
241 buildInputs = with self; [];
242 doCheck = false;
243 propagatedBuildInputs = with self; [MarkupSafe];
244 src = fetchurl {
245 url = "https://files.pythonhosted.org/packages/ee/68/4d07672821d514184357f1552f2dad923324f597e722de3b016ca4f7844f/WebHelpers-1.3.tar.gz";
246 sha256 = "ea86f284e929366b77424ba9a89341f43ae8dee3cbeb8702f73bcf86058aa583";
247 };
248 meta = {
249 license = [ pkgs.lib.licenses.bsdOriginal ];
250 };
251 };
252 WebHelpers2 = super.buildPythonPackage {
253 name = "WebHelpers2-2.0";
254 buildInputs = with self; [];
255 doCheck = false;
256 propagatedBuildInputs = with self; [MarkupSafe six];
257 src = fetchurl {
258 url = "https://files.pythonhosted.org/packages/ff/30/56342c6ea522439e3662427c8d7b5e5b390dff4ff2dc92d8afcb8ab68b75/WebHelpers2-2.0.tar.gz";
259 sha256 = "9a557ea31252a5beb654e52f67d7cf9ad4419a2b6e941b801d08f68a83daf02a";
260 };
261 meta = {
262 license = [ pkgs.lib.licenses.mit ];
263 };
264 };
265 WebOb = super.buildPythonPackage {
266 name = "WebOb-1.7.4";
267 buildInputs = with self; [];
268 doCheck = false;
269 propagatedBuildInputs = with self; [];
270 src = fetchurl {
271 url = "https://files.pythonhosted.org/packages/75/34/731e23f52371852dfe7490a61644826ba7fe70fd52a377aaca0f4956ba7f/WebOb-1.7.4.tar.gz";
272 sha256 = "8d10af182fda4b92193113ee1edeb687ab9dc44336b37d6804e413f0240d40d9";
273 };
274 meta = {
275 license = [ pkgs.lib.licenses.mit ];
276 };
277 };
278 WebTest = super.buildPythonPackage {
279 name = "WebTest-2.0.29";
280 buildInputs = with self; [];
281 doCheck = false;
282 propagatedBuildInputs = with self; [six WebOb waitress beautifulsoup4];
283 src = fetchurl {
284 url = "https://files.pythonhosted.org/packages/94/de/8f94738be649997da99c47b104aa3c3984ecec51a1d8153ed09638253d56/WebTest-2.0.29.tar.gz";
285 sha256 = "dbbccc15ac2465066c95dc3a7de0d30cde3791e886ccbd7e91d5d2a2580c922d";
286 };
287 meta = {
288 license = [ pkgs.lib.licenses.mit ];
289 };
290 };
291 Whoosh = super.buildPythonPackage {
292 name = "Whoosh-2.7.4";
293 buildInputs = with self; [];
294 doCheck = false;
295 propagatedBuildInputs = with self; [];
296 src = fetchurl {
297 url = "https://files.pythonhosted.org/packages/25/2b/6beed2107b148edc1321da0d489afc4617b9ed317ef7b72d4993cad9b684/Whoosh-2.7.4.tar.gz";
298 sha256 = "7ca5633dbfa9e0e0fa400d3151a8a0c4bec53bd2ecedc0a67705b17565c31a83";
299 };
300 meta = {
301 license = [ pkgs.lib.licenses.bsdOriginal pkgs.lib.licenses.bsd2 ];
302 };
303 };
304 alembic = super.buildPythonPackage {
305 name = "alembic-0.9.8";
306 buildInputs = with self; [];
307 doCheck = false;
308 propagatedBuildInputs = with self; [SQLAlchemy Mako python-editor python-dateutil];
309 src = fetchurl {
310 url = "https://files.pythonhosted.org/packages/a1/95/2252783859df9ec76b9a25d968c2827ed75a43ba34c6e8d38f87a5c0fb26/alembic-0.9.8.tar.gz";
311 sha256 = "13b8611788acf0d7b617775db5c2ae26554a6d4263c590ef628d448fd05aef56";
312 };
13 };
313 meta = {
14 meta = {
314 license = [ pkgs.lib.licenses.mit ];
15 license = [ pkgs.lib.licenses.mit ];
@@ -331,7 +32,7 b''
331 name = "appenlight-client-0.6.25";
32 name = "appenlight-client-0.6.25";
332 buildInputs = with self; [];
33 buildInputs = with self; [];
333 doCheck = false;
34 doCheck = false;
334 propagatedBuildInputs = with self; [WebOb requests six];
35 propagatedBuildInputs = with self; [webob requests six];
335 src = fetchurl {
36 src = fetchurl {
336 url = "https://files.pythonhosted.org/packages/fa/44/2911ef85ea4f4fe65058fd22959d8dad598fab6a3c84e5bcb569d15c8783/appenlight_client-0.6.25.tar.gz";
37 url = "https://files.pythonhosted.org/packages/fa/44/2911ef85ea4f4fe65058fd22959d8dad598fab6a3c84e5bcb569d15c8783/appenlight_client-0.6.25.tar.gz";
337 sha256 = "47180fc8ef136feb906129dce09bf0ef07ed884fcbaf5615ecf61cf35c1634e5";
38 sha256 = "47180fc8ef136feb906129dce09bf0ef07ed884fcbaf5615ecf61cf35c1634e5";
@@ -353,6 +54,19 b''
353 license = [ pkgs.lib.licenses.mit ];
54 license = [ pkgs.lib.licenses.mit ];
354 };
55 };
355 };
56 };
57 babel = super.buildPythonPackage {
58 name = "babel-1.3";
59 buildInputs = with self; [];
60 doCheck = false;
61 propagatedBuildInputs = with self; [pytz];
62 src = fetchurl {
63 url = "https://files.pythonhosted.org/packages/33/27/e3978243a03a76398c384c83f7ca879bc6e8f1511233a621fcada135606e/Babel-1.3.tar.gz";
64 sha256 = "9f02d0357184de1f093c10012b52e7454a1008be6a5c185ab7a3307aceb1d12e";
65 };
66 meta = {
67 license = [ pkgs.lib.licenses.bsdOriginal ];
68 };
69 };
356 backports.shutil-get-terminal-size = super.buildPythonPackage {
70 backports.shutil-get-terminal-size = super.buildPythonPackage {
357 name = "backports.shutil-get-terminal-size-1.0.0";
71 name = "backports.shutil-get-terminal-size-1.0.0";
358 buildInputs = with self; [];
72 buildInputs = with self; [];
@@ -366,6 +80,19 b''
366 license = [ pkgs.lib.licenses.mit ];
80 license = [ pkgs.lib.licenses.mit ];
367 };
81 };
368 };
82 };
83 beaker = super.buildPythonPackage {
84 name = "beaker-1.9.1";
85 buildInputs = with self; [];
86 doCheck = false;
87 propagatedBuildInputs = with self; [funcsigs];
88 src = fetchurl {
89 url = "https://files.pythonhosted.org/packages/ca/14/a626188d0d0c7b55dd7cf1902046c2743bd392a7078bb53073e13280eb1e/Beaker-1.9.1.tar.gz";
90 sha256 = "32276ed686ab7203baf60520452903e35d1c3515f632683ea4a5881c8cd55921";
91 };
92 meta = {
93 license = [ pkgs.lib.licenses.bsdOriginal ];
94 };
95 };
369 beautifulsoup4 = super.buildPythonPackage {
96 beautifulsoup4 = super.buildPythonPackage {
370 name = "beautifulsoup4-4.6.0";
97 name = "beautifulsoup4-4.6.0";
371 buildInputs = with self; [];
98 buildInputs = with self; [];
@@ -444,6 +171,19 b''
444 license = [ pkgs.lib.licenses.bsdOriginal ];
171 license = [ pkgs.lib.licenses.bsdOriginal ];
445 };
172 };
446 };
173 };
174 chameleon = super.buildPythonPackage {
175 name = "chameleon-2.24";
176 buildInputs = with self; [];
177 doCheck = false;
178 propagatedBuildInputs = with self; [];
179 src = fetchurl {
180 url = "https://files.pythonhosted.org/packages/5a/9e/637379ffa13c5172b5c0e704833ffea6bf51cec7567f93fd6e903d53ed74/Chameleon-2.24.tar.gz";
181 sha256 = "452e9580040ed8541062b16e21eaef4231dd5ed8da3ad9548246b9eef5c9787a";
182 };
183 meta = {
184 license = [ { fullName = "BSD-like (http://repoze.org/license.html)"; } ];
185 };
186 };
447 channelstream = super.buildPythonPackage {
187 channelstream = super.buildPythonPackage {
448 name = "channelstream-0.5.2";
188 name = "channelstream-0.5.2";
449 buildInputs = with self; [];
189 buildInputs = with self; [];
@@ -535,6 +275,19 b''
535 license = [ pkgs.lib.licenses.bsdOriginal ];
275 license = [ pkgs.lib.licenses.bsdOriginal ];
536 };
276 };
537 };
277 };
278 cprofilev = super.buildPythonPackage {
279 name = "cprofilev-1.0.7";
280 buildInputs = with self; [];
281 doCheck = false;
282 propagatedBuildInputs = with self; [bottle];
283 src = fetchurl {
284 url = "https://files.pythonhosted.org/packages/df/50/d8c1ada7d537c64b0f76453fa31dedb6af6e27b82fcf0331e5f71a4cf98b/CProfileV-1.0.7.tar.gz";
285 sha256 = "8791748b1f3d3468c2c927c3fd5f905080b84d8f2d217ca764b7d9d7a1fb9a77";
286 };
287 meta = {
288 license = [ pkgs.lib.licenses.mit ];
289 };
290 };
538 cssselect = super.buildPythonPackage {
291 cssselect = super.buildPythonPackage {
539 name = "cssselect-1.0.1";
292 name = "cssselect-1.0.1";
540 buildInputs = with self; [];
293 buildInputs = with self; [];
@@ -565,7 +318,7 b''
565 name = "deform-2.0.5";
318 name = "deform-2.0.5";
566 buildInputs = with self; [];
319 buildInputs = with self; [];
567 doCheck = false;
320 doCheck = false;
568 propagatedBuildInputs = with self; [Chameleon colander iso8601 peppercorn translationstring zope.deprecation];
321 propagatedBuildInputs = with self; [chameleon colander iso8601 peppercorn translationstring zope.deprecation];
569 src = fetchurl {
322 src = fetchurl {
570 url = "https://files.pythonhosted.org/packages/0c/b1/ba711d5808c12538c8504f534d79c124ed834f19ac36f0ac5391c3bbd1c1/deform-2.0.5.tar.gz";
323 url = "https://files.pythonhosted.org/packages/0c/b1/ba711d5808c12538c8504f534d79c124ed834f19ac36f0ac5391c3bbd1c1/deform-2.0.5.tar.gz";
571 sha256 = "874d3346a02c500432efdcc73b1a7174aa0ea69cd52a99bb9a812967f54f6f79";
324 sha256 = "874d3346a02c500432efdcc73b1a7174aa0ea69cd52a99bb9a812967f54f6f79";
@@ -678,6 +431,19 b''
678 license = [ pkgs.lib.licenses.bsdOriginal ];
431 license = [ pkgs.lib.licenses.bsdOriginal ];
679 };
432 };
680 };
433 };
434 formencode = super.buildPythonPackage {
435 name = "formencode-1.2.4";
436 buildInputs = with self; [];
437 doCheck = false;
438 propagatedBuildInputs = with self; [];
439 src = fetchurl {
440 url = "https://files.pythonhosted.org/packages/8e/59/0174271a6f004512e0201188593e6d319db139d14cb7490e488bbb078015/FormEncode-1.2.4.tar.gz";
441 sha256 = "8270840ee832055463b3d3328f8ae4b881e1fbe84353c97af1d913df3401feb9";
442 };
443 meta = {
444 license = [ pkgs.lib.licenses.psfl ];
445 };
446 };
681 funcsigs = super.buildPythonPackage {
447 funcsigs = super.buildPythonPackage {
682 name = "funcsigs-1.0.2";
448 name = "funcsigs-1.0.2";
683 buildInputs = with self; [];
449 buildInputs = with self; [];
@@ -838,7 +604,7 b''
838 name = "infrae.cache-1.0.1";
604 name = "infrae.cache-1.0.1";
839 buildInputs = with self; [];
605 buildInputs = with self; [];
840 doCheck = false;
606 doCheck = false;
841 propagatedBuildInputs = with self; [Beaker repoze.lru];
607 propagatedBuildInputs = with self; [beaker repoze.lru];
842 src = fetchurl {
608 src = fetchurl {
843 url = "https://files.pythonhosted.org/packages/bb/f0/e7d5e984cf6592fd2807dc7bc44a93f9d18e04e6a61f87fdfb2622422d74/infrae.cache-1.0.1.tar.gz";
609 url = "https://files.pythonhosted.org/packages/bb/f0/e7d5e984cf6592fd2807dc7bc44a93f9d18e04e6a61f87fdfb2622422d74/infrae.cache-1.0.1.tar.gz";
844 sha256 = "844b1baa0ab7613159c7e2ee368a5ec4d574e409ff86963e1f45f08dacd478b7";
610 sha256 = "844b1baa0ab7613159c7e2ee368a5ec4d574e409ff86963e1f45f08dacd478b7";
@@ -890,7 +656,7 b''
890 name = "ipython-5.1.0";
656 name = "ipython-5.1.0";
891 buildInputs = with self; [];
657 buildInputs = with self; [];
892 doCheck = false;
658 doCheck = false;
893 propagatedBuildInputs = with self; [setuptools decorator pickleshare simplegeneric traitlets prompt-toolkit Pygments pexpect backports.shutil-get-terminal-size pathlib2 pexpect];
659 propagatedBuildInputs = with self; [setuptools decorator pickleshare simplegeneric traitlets prompt-toolkit pygments pexpect backports.shutil-get-terminal-size pathlib2 pexpect];
894 src = fetchurl {
660 src = fetchurl {
895 url = "https://files.pythonhosted.org/packages/89/63/a9292f7cd9d0090a0f995e1167f3f17d5889dcbc9a175261719c513b9848/ipython-5.1.0.tar.gz";
661 url = "https://files.pythonhosted.org/packages/89/63/a9292f7cd9d0090a0f995e1167f3f17d5889dcbc9a175261719c513b9848/ipython-5.1.0.tar.gz";
896 sha256 = "7ef4694e1345913182126b219aaa4a0047e191af414256da6772cf249571b961";
662 sha256 = "7ef4694e1345913182126b219aaa4a0047e191af414256da6772cf249571b961";
@@ -938,6 +704,19 b''
938 license = [ pkgs.lib.licenses.bsdOriginal ];
704 license = [ pkgs.lib.licenses.bsdOriginal ];
939 };
705 };
940 };
706 };
707 jinja2 = super.buildPythonPackage {
708 name = "jinja2-2.9.6";
709 buildInputs = with self; [];
710 doCheck = false;
711 propagatedBuildInputs = with self; [markupsafe];
712 src = fetchurl {
713 url = "https://files.pythonhosted.org/packages/90/61/f820ff0076a2599dd39406dcb858ecb239438c02ce706c8e91131ab9c7f1/Jinja2-2.9.6.tar.gz";
714 sha256 = "ddaa01a212cd6d641401cb01b605f4a4d9f37bfc93043d7f760ec70fb99ff9ff";
715 };
716 meta = {
717 license = [ pkgs.lib.licenses.bsdOriginal ];
718 };
719 };
941 jsonschema = super.buildPythonPackage {
720 jsonschema = super.buildPythonPackage {
942 name = "jsonschema-2.6.0";
721 name = "jsonschema-2.6.0";
943 buildInputs = with self; [];
722 buildInputs = with self; [];
@@ -1003,6 +782,45 b''
1003 license = [ pkgs.lib.licenses.bsdOriginal ];
782 license = [ pkgs.lib.licenses.bsdOriginal ];
1004 };
783 };
1005 };
784 };
785 mako = super.buildPythonPackage {
786 name = "mako-1.0.7";
787 buildInputs = with self; [];
788 doCheck = false;
789 propagatedBuildInputs = with self; [markupsafe];
790 src = fetchurl {
791 url = "https://files.pythonhosted.org/packages/eb/f3/67579bb486517c0d49547f9697e36582cd19dafb5df9e687ed8e22de57fa/Mako-1.0.7.tar.gz";
792 sha256 = "4e02fde57bd4abb5ec400181e4c314f56ac3e49ba4fb8b0d50bba18cb27d25ae";
793 };
794 meta = {
795 license = [ pkgs.lib.licenses.mit ];
796 };
797 };
798 markdown = super.buildPythonPackage {
799 name = "markdown-2.6.11";
800 buildInputs = with self; [];
801 doCheck = false;
802 propagatedBuildInputs = with self; [];
803 src = fetchurl {
804 url = "https://files.pythonhosted.org/packages/b3/73/fc5c850f44af5889192dff783b7b0d8f3fe8d30b65c8e3f78f8f0265fecf/Markdown-2.6.11.tar.gz";
805 sha256 = "a856869c7ff079ad84a3e19cd87a64998350c2b94e9e08e44270faef33400f81";
806 };
807 meta = {
808 license = [ pkgs.lib.licenses.bsdOriginal ];
809 };
810 };
811 markupsafe = super.buildPythonPackage {
812 name = "markupsafe-1.0";
813 buildInputs = with self; [];
814 doCheck = false;
815 propagatedBuildInputs = with self; [];
816 src = fetchurl {
817 url = "https://files.pythonhosted.org/packages/4d/de/32d741db316d8fdb7680822dd37001ef7a448255de9699ab4bfcbdf4172b/MarkupSafe-1.0.tar.gz";
818 sha256 = "a6be69091dac236ea9c6bc7d012beab42010fa914c459791d627dad4910eb665";
819 };
820 meta = {
821 license = [ pkgs.lib.licenses.bsdOriginal ];
822 };
823 };
1006 meld3 = super.buildPythonPackage {
824 meld3 = super.buildPythonPackage {
1007 name = "meld3-1.0.2";
825 name = "meld3-1.0.2";
1008 buildInputs = with self; [];
826 buildInputs = with self; [];
@@ -1055,11 +873,24 b''
1055 license = [ pkgs.lib.licenses.asl20 ];
873 license = [ pkgs.lib.licenses.asl20 ];
1056 };
874 };
1057 };
875 };
876 mysql-python = super.buildPythonPackage {
877 name = "mysql-python-1.2.5";
878 buildInputs = with self; [];
879 doCheck = false;
880 propagatedBuildInputs = with self; [];
881 src = fetchurl {
882 url = "https://files.pythonhosted.org/packages/a5/e9/51b544da85a36a68debe7a7091f068d802fc515a3a202652828c73453cad/MySQL-python-1.2.5.zip";
883 sha256 = "811040b647e5d5686f84db415efd697e6250008b112b6909ba77ac059e140c74";
884 };
885 meta = {
886 license = [ pkgs.lib.licenses.gpl1 ];
887 };
888 };
1058 nbconvert = super.buildPythonPackage {
889 nbconvert = super.buildPythonPackage {
1059 name = "nbconvert-5.3.1";
890 name = "nbconvert-5.3.1";
1060 buildInputs = with self; [];
891 buildInputs = with self; [];
1061 doCheck = false;
892 doCheck = false;
1062 propagatedBuildInputs = with self; [mistune Jinja2 Pygments traitlets jupyter-core nbformat entrypoints bleach pandocfilters testpath];
893 propagatedBuildInputs = with self; [mistune jinja2 pygments traitlets jupyter-core nbformat entrypoints bleach pandocfilters testpath];
1063 src = fetchurl {
894 src = fetchurl {
1064 url = "https://files.pythonhosted.org/packages/b9/a4/d0a0938ad6f5eeb4dea4e73d255c617ef94b0b2849d51194c9bbdb838412/nbconvert-5.3.1.tar.gz";
895 url = "https://files.pythonhosted.org/packages/b9/a4/d0a0938ad6f5eeb4dea4e73d255c617ef94b0b2849d51194c9bbdb838412/nbconvert-5.3.1.tar.gz";
1065 sha256 = "12b1a4671d4463ab73af6e4cbcc965b62254e05d182cd54995dda0d0ef9e2db9";
896 sha256 = "12b1a4671d4463ab73af6e4cbcc965b62254e05d182cd54995dda0d0ef9e2db9";
@@ -1120,6 +951,45 b''
1120 license = [ pkgs.lib.licenses.bsdOriginal ];
951 license = [ pkgs.lib.licenses.bsdOriginal ];
1121 };
952 };
1122 };
953 };
954 paste = super.buildPythonPackage {
955 name = "paste-2.0.3";
956 buildInputs = with self; [];
957 doCheck = false;
958 propagatedBuildInputs = with self; [six];
959 src = fetchurl {
960 url = "https://files.pythonhosted.org/packages/30/c3/5c2f7c7a02e4f58d4454353fa1c32c94f79fa4e36d07a67c0ac295ea369e/Paste-2.0.3.tar.gz";
961 sha256 = "2346a347824c32641bf020c17967b49ae74d3310ec1bc9b958d4b84e2d985218";
962 };
963 meta = {
964 license = [ pkgs.lib.licenses.mit ];
965 };
966 };
967 pastedeploy = super.buildPythonPackage {
968 name = "pastedeploy-1.5.2";
969 buildInputs = with self; [];
970 doCheck = false;
971 propagatedBuildInputs = with self; [];
972 src = fetchurl {
973 url = "https://files.pythonhosted.org/packages/0f/90/8e20cdae206c543ea10793cbf4136eb9a8b3f417e04e40a29d72d9922cbd/PasteDeploy-1.5.2.tar.gz";
974 sha256 = "d5858f89a255e6294e63ed46b73613c56e3b9a2d82a42f1df4d06c8421a9e3cb";
975 };
976 meta = {
977 license = [ pkgs.lib.licenses.mit ];
978 };
979 };
980 pastescript = super.buildPythonPackage {
981 name = "pastescript-2.0.2";
982 buildInputs = with self; [];
983 doCheck = false;
984 propagatedBuildInputs = with self; [paste pastedeploy six];
985 src = fetchurl {
986 url = "https://files.pythonhosted.org/packages/e5/f0/78e766c3dcc61a4f3a6f71dd8c95168ae9c7a31722b5663d19c1fdf62cb6/PasteScript-2.0.2.tar.gz";
987 sha256 = "c03f249805538cc2328741ae8d262a9200ae1c993119b3d9bac4cd422cb476c0";
988 };
989 meta = {
990 license = [ pkgs.lib.licenses.mit ];
991 };
992 };
1123 pathlib2 = super.buildPythonPackage {
993 pathlib2 = super.buildPythonPackage {
1124 name = "pathlib2-2.3.0";
994 name = "pathlib2-2.3.0";
1125 buildInputs = with self; [];
995 buildInputs = with self; [];
@@ -1189,7 +1059,7 b''
1189 name = "plaster-pastedeploy-0.4.2";
1059 name = "plaster-pastedeploy-0.4.2";
1190 buildInputs = with self; [];
1060 buildInputs = with self; [];
1191 doCheck = false;
1061 doCheck = false;
1192 propagatedBuildInputs = with self; [PasteDeploy plaster];
1062 propagatedBuildInputs = with self; [pastedeploy plaster];
1193 src = fetchurl {
1063 src = fetchurl {
1194 url = "https://pypi.python.org/packages/2c/62/0daf9c0be958e785023e583e51baac15863699e956bfb3d448898d80edd8/plaster_pastedeploy-0.4.2.tar.gz";
1064 url = "https://pypi.python.org/packages/2c/62/0daf9c0be958e785023e583e51baac15863699e956bfb3d448898d80edd8/plaster_pastedeploy-0.4.2.tar.gz";
1195 md5 = "58fd7852002909378e818c9d5b71e90a";
1065 md5 = "58fd7852002909378e818c9d5b71e90a";
@@ -1280,7 +1150,7 b''
1280 name = "py-gfm-0.1.3";
1150 name = "py-gfm-0.1.3";
1281 buildInputs = with self; [];
1151 buildInputs = with self; [];
1282 doCheck = false;
1152 doCheck = false;
1283 propagatedBuildInputs = with self; [setuptools Markdown];
1153 propagatedBuildInputs = with self; [setuptools markdown];
1284 src = fetchurl {
1154 src = fetchurl {
1285 url = "https://files.pythonhosted.org/packages/12/e4/6b3d8678da04f97d7490d8264d8de51c2dc9fb91209ccee9c515c95e14c5/py-gfm-0.1.3.tar.gz";
1155 url = "https://files.pythonhosted.org/packages/12/e4/6b3d8678da04f97d7490d8264d8de51c2dc9fb91209ccee9c515c95e14c5/py-gfm-0.1.3.tar.gz";
1286 sha256 = "f107e43248eba6236b19ceda78531f40c7bdb85ba4a219f478c92920397f4f98";
1156 sha256 = "f107e43248eba6236b19ceda78531f40c7bdb85ba4a219f478c92920397f4f98";
@@ -1328,11 +1198,24 b''
1328 license = [ pkgs.lib.licenses.mit ];
1198 license = [ pkgs.lib.licenses.mit ];
1329 };
1199 };
1330 };
1200 };
1201 pygments = super.buildPythonPackage {
1202 name = "pygments-2.2.0";
1203 buildInputs = with self; [];
1204 doCheck = false;
1205 propagatedBuildInputs = with self; [];
1206 src = fetchurl {
1207 url = "https://files.pythonhosted.org/packages/71/2a/2e4e77803a8bd6408a2903340ac498cb0a2181811af7c9ec92cb70b0308a/Pygments-2.2.0.tar.gz";
1208 sha256 = "dbae1046def0efb574852fab9e90209b23f556367b5a320c0bcb871c77c3e8cc";
1209 };
1210 meta = {
1211 license = [ pkgs.lib.licenses.bsdOriginal ];
1212 };
1213 };
1331 pygments-markdown-lexer = super.buildPythonPackage {
1214 pygments-markdown-lexer = super.buildPythonPackage {
1332 name = "pygments-markdown-lexer-0.1.0.dev39";
1215 name = "pygments-markdown-lexer-0.1.0.dev39";
1333 buildInputs = with self; [];
1216 buildInputs = with self; [];
1334 doCheck = false;
1217 doCheck = false;
1335 propagatedBuildInputs = with self; [Pygments];
1218 propagatedBuildInputs = with self; [pygments];
1336 src = fetchurl {
1219 src = fetchurl {
1337 url = "https://files.pythonhosted.org/packages/c3/12/674cdee66635d638cedb2c5d9c85ce507b7b2f91bdba29e482f1b1160ff6/pygments-markdown-lexer-0.1.0.dev39.zip";
1220 url = "https://files.pythonhosted.org/packages/c3/12/674cdee66635d638cedb2c5d9c85ce507b7b2f91bdba29e482f1b1160ff6/pygments-markdown-lexer-0.1.0.dev39.zip";
1338 sha256 = "4c128c26450b5886521c674d759f95fc3768b8955a7d9c81866ee0213c2febdf";
1221 sha256 = "4c128c26450b5886521c674d759f95fc3768b8955a7d9c81866ee0213c2febdf";
@@ -1358,7 +1241,7 b''
1358 name = "pyramid-1.9.2";
1241 name = "pyramid-1.9.2";
1359 buildInputs = with self; [];
1242 buildInputs = with self; [];
1360 doCheck = false;
1243 doCheck = false;
1361 propagatedBuildInputs = with self; [setuptools WebOb repoze.lru zope.interface zope.deprecation venusian translationstring PasteDeploy plaster plaster-pastedeploy hupper];
1244 propagatedBuildInputs = with self; [setuptools webob repoze.lru zope.interface zope.deprecation venusian translationstring pastedeploy plaster plaster-pastedeploy hupper];
1362 src = fetchurl {
1245 src = fetchurl {
1363 url = "https://files.pythonhosted.org/packages/a0/c1/b321d07cfc4870541989ad131c86a1d593bfe802af0eca9718a0dadfb97a/pyramid-1.9.2.tar.gz";
1246 url = "https://files.pythonhosted.org/packages/a0/c1/b321d07cfc4870541989ad131c86a1d593bfe802af0eca9718a0dadfb97a/pyramid-1.9.2.tar.gz";
1364 sha256 = "cf89a48cb899291639686bf3d4a883b39e496151fa4871fb83cc1a3200d5b925";
1247 sha256 = "cf89a48cb899291639686bf3d4a883b39e496151fa4871fb83cc1a3200d5b925";
@@ -1371,7 +1254,7 b''
1371 name = "pyramid-beaker-0.8";
1254 name = "pyramid-beaker-0.8";
1372 buildInputs = with self; [];
1255 buildInputs = with self; [];
1373 doCheck = false;
1256 doCheck = false;
1374 propagatedBuildInputs = with self; [pyramid Beaker];
1257 propagatedBuildInputs = with self; [pyramid beaker];
1375 src = fetchurl {
1258 src = fetchurl {
1376 url = "https://files.pythonhosted.org/packages/d9/6e/b85426e00fd3d57f4545f74e1c3828552d8700f13ededeef9233f7bca8be/pyramid_beaker-0.8.tar.gz";
1259 url = "https://files.pythonhosted.org/packages/d9/6e/b85426e00fd3d57f4545f74e1c3828552d8700f13ededeef9233f7bca8be/pyramid_beaker-0.8.tar.gz";
1377 sha256 = "77dc658c2c84c8c384b6c07f60dd9d2ccaa30df97a147c790db43636f1e8d441";
1260 sha256 = "77dc658c2c84c8c384b6c07f60dd9d2ccaa30df97a147c790db43636f1e8d441";
@@ -1384,7 +1267,7 b''
1384 name = "pyramid-debugtoolbar-4.4";
1267 name = "pyramid-debugtoolbar-4.4";
1385 buildInputs = with self; [];
1268 buildInputs = with self; [];
1386 doCheck = false;
1269 doCheck = false;
1387 propagatedBuildInputs = with self; [pyramid pyramid-mako repoze.lru Pygments ipaddress];
1270 propagatedBuildInputs = with self; [pyramid pyramid-mako repoze.lru pygments ipaddress];
1388 src = fetchurl {
1271 src = fetchurl {
1389 url = "https://files.pythonhosted.org/packages/00/6f/c04eb4e715a7a5a4b24079ab7ffd1dceb1f70b2e24fc17686a2922dbac0a/pyramid_debugtoolbar-4.4.tar.gz";
1272 url = "https://files.pythonhosted.org/packages/00/6f/c04eb4e715a7a5a4b24079ab7ffd1dceb1f70b2e24fc17686a2922dbac0a/pyramid_debugtoolbar-4.4.tar.gz";
1390 sha256 = "5f779aa242009c4aace848f67807da44af2970b303aa1c9682c2efab76b7e79e";
1273 sha256 = "5f779aa242009c4aace848f67807da44af2970b303aa1c9682c2efab76b7e79e";
@@ -1397,7 +1280,7 b''
1397 name = "pyramid-jinja2-2.7";
1280 name = "pyramid-jinja2-2.7";
1398 buildInputs = with self; [];
1281 buildInputs = with self; [];
1399 doCheck = false;
1282 doCheck = false;
1400 propagatedBuildInputs = with self; [pyramid zope.deprecation Jinja2 MarkupSafe];
1283 propagatedBuildInputs = with self; [pyramid zope.deprecation jinja2 markupsafe];
1401 src = fetchurl {
1284 src = fetchurl {
1402 url = "https://files.pythonhosted.org/packages/d8/80/d60a7233823de22ce77bd864a8a83736a1fe8b49884b08303a2e68b2c853/pyramid_jinja2-2.7.tar.gz";
1285 url = "https://files.pythonhosted.org/packages/d8/80/d60a7233823de22ce77bd864a8a83736a1fe8b49884b08303a2e68b2c853/pyramid_jinja2-2.7.tar.gz";
1403 sha256 = "5c21081f65a5bec0b76957990c2b89ed41f4fd11257121387110cb722fd0e5eb";
1286 sha256 = "5c21081f65a5bec0b76957990c2b89ed41f4fd11257121387110cb722fd0e5eb";
@@ -1410,7 +1293,7 b''
1410 name = "pyramid-mako-1.0.2";
1293 name = "pyramid-mako-1.0.2";
1411 buildInputs = with self; [];
1294 buildInputs = with self; [];
1412 doCheck = false;
1295 doCheck = false;
1413 propagatedBuildInputs = with self; [pyramid Mako];
1296 propagatedBuildInputs = with self; [pyramid mako];
1414 src = fetchurl {
1297 src = fetchurl {
1415 url = "https://files.pythonhosted.org/packages/f1/92/7e69bcf09676d286a71cb3bbb887b16595b96f9ba7adbdc239ffdd4b1eb9/pyramid_mako-1.0.2.tar.gz";
1298 url = "https://files.pythonhosted.org/packages/f1/92/7e69bcf09676d286a71cb3bbb887b16595b96f9ba7adbdc239ffdd4b1eb9/pyramid_mako-1.0.2.tar.gz";
1416 sha256 = "6da0987b9874cf53e72139624665a73965bbd7fbde504d1753e4231ce916f3a1";
1299 sha256 = "6da0987b9874cf53e72139624665a73965bbd7fbde504d1753e4231ce916f3a1";
@@ -1668,9 +1551,9 b''
1668 };
1551 };
1669 rhodecode-enterprise-ce = super.buildPythonPackage {
1552 rhodecode-enterprise-ce = super.buildPythonPackage {
1670 name = "rhodecode-enterprise-ce-4.13.0";
1553 name = "rhodecode-enterprise-ce-4.13.0";
1671 buildInputs = with self; [pytest py pytest-cov pytest-sugar pytest-runner pytest-catchlog pytest-profiling gprof2dot pytest-timeout mock WebTest cov-core coverage configobj];
1554 buildInputs = with self; [pytest py pytest-cov pytest-sugar pytest-runner pytest-catchlog pytest-profiling gprof2dot pytest-timeout mock webtest cov-core coverage configobj];
1672 doCheck = true;
1555 doCheck = true;
1673 propagatedBuildInputs = with self; [setuptools-scm amqp authomatic Babel Beaker celery Chameleon channelstream click colander configobj cssselect decorator deform docutils dogpile.cache dogpile.core ecdsa FormEncode future futures gnureadline infrae.cache iso8601 itsdangerous Jinja2 billiard kombu lxml Mako Markdown MarkupSafe msgpack-python MySQL-python objgraph packaging Paste PasteDeploy PasteScript pathlib2 peppercorn psutil psycopg2 py-bcrypt pycrypto pycurl pyflakes pygments-markdown-lexer Pygments pyparsing pyramid-beaker pyramid-debugtoolbar pyramid-jinja2 pyramid-mako pyramid pysqlite python-dateutil python-ldap python-memcached python-pam pytz tzlocal pyzmq py-gfm recaptcha-client redis repoze.lru requests Routes setproctitle simplejson six SQLAlchemy sshpubkeys subprocess32 supervisor Tempita translationstring trollius urllib3 URLObject venusian WebError WebHelpers2 WebHelpers WebOb Whoosh wsgiref zope.cachedescriptors zope.deprecation zope.event zope.interface nbconvert bleach nbformat jupyter-client alembic invoke bumpversion transifex-client gevent greenlet gunicorn waitress ipdb ipython CProfileV bottle rhodecode-tools appenlight-client pytest py pytest-cov pytest-sugar pytest-runner pytest-catchlog pytest-profiling gprof2dot pytest-timeout mock WebTest cov-core coverage];
1556 propagatedBuildInputs = with self; [setuptools-scm amqp authomatic babel beaker celery chameleon channelstream click colander configobj cssselect decorator deform docutils dogpile.cache dogpile.core ecdsa formencode future futures gnureadline infrae.cache iso8601 itsdangerous jinja2 billiard kombu lxml mako markdown markupsafe msgpack-python mysql-python objgraph packaging paste pastedeploy pastescript pathlib2 peppercorn psutil psycopg2 py-bcrypt pycrypto pycurl pyflakes pygments-markdown-lexer pygments pyparsing pyramid-beaker pyramid-debugtoolbar pyramid-jinja2 pyramid-mako pyramid pysqlite python-dateutil python-ldap python-memcached python-pam pytz tzlocal pyzmq py-gfm recaptcha-client redis repoze.lru requests routes setproctitle simplejson six sqlalchemy sshpubkeys subprocess32 supervisor tempita translationstring trollius urllib3 urlobject venusian weberror webhelpers2 webhelpers webob whoosh wsgiref zope.cachedescriptors zope.deprecation zope.event zope.interface nbconvert bleach nbformat jupyter-client alembic invoke bumpversion gevent greenlet gunicorn waitress ipdb ipython cprofilev bottle rhodecode-tools appenlight-client pytest py pytest-cov pytest-sugar pytest-runner pytest-catchlog pytest-profiling gprof2dot pytest-timeout mock webtest cov-core coverage];
1674 src = ./.;
1557 src = ./.;
1675 meta = {
1558 meta = {
1676 license = [ { fullName = "Affero GNU General Public License v3 or later (AGPLv3+)"; } { fullName = "AGPLv3, and Commercial License"; } ];
1559 license = [ { fullName = "Affero GNU General Public License v3 or later (AGPLv3+)"; } { fullName = "AGPLv3, and Commercial License"; } ];
@@ -1680,7 +1563,7 b''
1680 name = "rhodecode-tools-0.14.1";
1563 name = "rhodecode-tools-0.14.1";
1681 buildInputs = with self; [];
1564 buildInputs = with self; [];
1682 doCheck = false;
1565 doCheck = false;
1683 propagatedBuildInputs = with self; [click future six Mako MarkupSafe requests elasticsearch elasticsearch-dsl urllib3 Whoosh];
1566 propagatedBuildInputs = with self; [click future six mako markupsafe requests elasticsearch elasticsearch-dsl urllib3 whoosh];
1684 src = fetchurl {
1567 src = fetchurl {
1685 url = "https://code.rhodecode.com/rhodecode-tools-ce/archive/v0.14.1.tar.gz?md5=0b9c2caad160b68889f8172ea54af7b2";
1568 url = "https://code.rhodecode.com/rhodecode-tools-ce/archive/v0.14.1.tar.gz?md5=0b9c2caad160b68889f8172ea54af7b2";
1686 md5 = "0b9c2caad160b68889f8172ea54af7b2";
1569 md5 = "0b9c2caad160b68889f8172ea54af7b2";
@@ -1689,6 +1572,19 b''
1689 license = [ { fullName = "AGPLv3 and Proprietary"; } ];
1572 license = [ { fullName = "AGPLv3 and Proprietary"; } ];
1690 };
1573 };
1691 };
1574 };
1575 routes = super.buildPythonPackage {
1576 name = "routes-2.4.1";
1577 buildInputs = with self; [];
1578 doCheck = false;
1579 propagatedBuildInputs = with self; [six repoze.lru];
1580 src = fetchurl {
1581 url = "https://files.pythonhosted.org/packages/33/38/ea827837e68d9c7dde4cff7ec122a93c319f0effc08ce92a17095576603f/Routes-2.4.1.tar.gz";
1582 sha256 = "26ee43340fca5a32769ffe0c58edcb396ccce6bc1dfa689ddf844d50877355fd";
1583 };
1584 meta = {
1585 license = [ pkgs.lib.licenses.mit ];
1586 };
1587 };
1692 scandir = super.buildPythonPackage {
1588 scandir = super.buildPythonPackage {
1693 name = "scandir-1.7";
1589 name = "scandir-1.7";
1694 buildInputs = with self; [];
1590 buildInputs = with self; [];
@@ -1832,6 +1728,19 b''
1832 license = [ { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ];
1728 license = [ { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ];
1833 };
1729 };
1834 };
1730 };
1731 tempita = super.buildPythonPackage {
1732 name = "tempita-0.5.2";
1733 buildInputs = with self; [];
1734 doCheck = false;
1735 propagatedBuildInputs = with self; [];
1736 src = fetchurl {
1737 url = "https://files.pythonhosted.org/packages/56/c8/8ed6eee83dbddf7b0fc64dd5d4454bc05e6ccaafff47991f73f2894d9ff4/Tempita-0.5.2.tar.gz";
1738 sha256 = "cacecf0baa674d356641f1d406b8bff1d756d739c46b869a54de515d08e6fc9c";
1739 };
1740 meta = {
1741 license = [ pkgs.lib.licenses.mit ];
1742 };
1743 };
1835 termcolor = super.buildPythonPackage {
1744 termcolor = super.buildPythonPackage {
1836 name = "termcolor-1.1.0";
1745 name = "termcolor-1.1.0";
1837 buildInputs = with self; [];
1746 buildInputs = with self; [];
@@ -2001,14 +1910,92 b''
2001 license = [ pkgs.lib.licenses.bsdOriginal ];
1910 license = [ pkgs.lib.licenses.bsdOriginal ];
2002 };
1911 };
2003 };
1912 };
2004 ws4py = super.buildPythonPackage {
1913 weberror = super.buildPythonPackage {
2005 name = "ws4py-0.4.3";
1914 name = "weberror-0.10.3";
1915 buildInputs = with self; [];
1916 doCheck = false;
1917 propagatedBuildInputs = with self; [webob tempita pygments paste];
1918 src = fetchurl {
1919 url = "https://files.pythonhosted.org/packages/35/76/e7e5c2ce7e9c7f31b54c1ff295a495886d1279a002557d74dd8957346a79/WebError-0.10.3.tar.gz";
1920 sha256 = "a6cb354ff921aad008336599b5e56622ebbe8c76d86985e22af262e6f7242f3b";
1921 };
1922 meta = {
1923 license = [ pkgs.lib.licenses.mit ];
1924 };
1925 };
1926 webhelpers = super.buildPythonPackage {
1927 name = "webhelpers-1.3";
1928 buildInputs = with self; [];
1929 doCheck = false;
1930 propagatedBuildInputs = with self; [markupsafe];
1931 src = fetchurl {
1932 url = "https://files.pythonhosted.org/packages/ee/68/4d07672821d514184357f1552f2dad923324f597e722de3b016ca4f7844f/WebHelpers-1.3.tar.gz";
1933 sha256 = "ea86f284e929366b77424ba9a89341f43ae8dee3cbeb8702f73bcf86058aa583";
1934 };
1935 meta = {
1936 license = [ pkgs.lib.licenses.bsdOriginal ];
1937 };
1938 };
1939 webhelpers2 = super.buildPythonPackage {
1940 name = "webhelpers2-2.0";
1941 buildInputs = with self; [];
1942 doCheck = false;
1943 propagatedBuildInputs = with self; [markupsafe six];
1944 src = fetchurl {
1945 url = "https://files.pythonhosted.org/packages/ff/30/56342c6ea522439e3662427c8d7b5e5b390dff4ff2dc92d8afcb8ab68b75/WebHelpers2-2.0.tar.gz";
1946 sha256 = "9a557ea31252a5beb654e52f67d7cf9ad4419a2b6e941b801d08f68a83daf02a";
1947 };
1948 meta = {
1949 license = [ pkgs.lib.licenses.mit ];
1950 };
1951 };
1952 webob = super.buildPythonPackage {
1953 name = "webob-1.7.4";
2006 buildInputs = with self; [];
1954 buildInputs = with self; [];
2007 doCheck = false;
1955 doCheck = false;
2008 propagatedBuildInputs = with self; [];
1956 propagatedBuildInputs = with self; [];
2009 src = fetchurl {
1957 src = fetchurl {
2010 url = "https://pypi.python.org/packages/fa/a1/33c43a4304ac3b4dc81deb93cbd329de9297dd034d75c47cce64fda806bc/ws4py-0.4.3.tar.gz";
1958 url = "https://files.pythonhosted.org/packages/75/34/731e23f52371852dfe7490a61644826ba7fe70fd52a377aaca0f4956ba7f/WebOb-1.7.4.tar.gz";
2011 md5 = "d5834cf7d3965bb0da31bbb02bd8513a";
1959 sha256 = "8d10af182fda4b92193113ee1edeb687ab9dc44336b37d6804e413f0240d40d9";
1960 };
1961 meta = {
1962 license = [ pkgs.lib.licenses.mit ];
1963 };
1964 };
1965 webtest = super.buildPythonPackage {
1966 name = "webtest-2.0.29";
1967 buildInputs = with self; [];
1968 doCheck = false;
1969 propagatedBuildInputs = with self; [six webob waitress beautifulsoup4];
1970 src = fetchurl {
1971 url = "https://files.pythonhosted.org/packages/94/de/8f94738be649997da99c47b104aa3c3984ecec51a1d8153ed09638253d56/WebTest-2.0.29.tar.gz";
1972 sha256 = "dbbccc15ac2465066c95dc3a7de0d30cde3791e886ccbd7e91d5d2a2580c922d";
1973 };
1974 meta = {
1975 license = [ pkgs.lib.licenses.mit ];
1976 };
1977 };
1978 whoosh = super.buildPythonPackage {
1979 name = "whoosh-2.7.4";
1980 buildInputs = with self; [];
1981 doCheck = false;
1982 propagatedBuildInputs = with self; [];
1983 src = fetchurl {
1984 url = "https://files.pythonhosted.org/packages/25/2b/6beed2107b148edc1321da0d489afc4617b9ed317ef7b72d4993cad9b684/Whoosh-2.7.4.tar.gz";
1985 sha256 = "7ca5633dbfa9e0e0fa400d3151a8a0c4bec53bd2ecedc0a67705b17565c31a83";
1986 };
1987 meta = {
1988 license = [ pkgs.lib.licenses.bsdOriginal pkgs.lib.licenses.bsd2 ];
1989 };
1990 };
1991 ws4py = super.buildPythonPackage {
1992 name = "ws4py-0.5.1";
1993 buildInputs = with self; [];
1994 doCheck = false;
1995 propagatedBuildInputs = with self; [];
1996 src = fetchurl {
1997 url = "https://files.pythonhosted.org/packages/53/20/4019a739b2eefe9282d3822ef6a225250af964b117356971bd55e274193c/ws4py-0.5.1.tar.gz";
1998 sha256 = "29d073d7f2e006373e6a848b1d00951a1107eb81f3742952be905429dc5a5483";
2012 };
1999 };
2013 meta = {
2000 meta = {
2014 license = [ pkgs.lib.licenses.bsdOriginal ];
2001 license = [ pkgs.lib.licenses.bsdOriginal ];
@@ -4,10 +4,10 b' setuptools-scm==1.15.6'
4
4
5 amqp==2.2.2
5 amqp==2.2.2
6 authomatic==0.1.0.post1
6 authomatic==0.1.0.post1
7 Babel==1.3
7 babel==1.3
8 Beaker==1.9.1
8 beaker==1.9.1
9 celery==4.1.0
9 celery==4.1.0
10 Chameleon==2.24
10 chameleon==2.24
11 channelstream==0.5.2
11 channelstream==0.5.2
12 click==6.6
12 click==6.6
13 colander==1.4.0
13 colander==1.4.0
@@ -19,27 +19,27 b' docutils==0.14.0'
19 dogpile.cache==0.6.5
19 dogpile.cache==0.6.5
20 dogpile.core==0.4.1
20 dogpile.core==0.4.1
21 ecdsa==0.13
21 ecdsa==0.13
22 FormEncode==1.2.4
22 formencode==1.2.4
23 future==0.14.3
23 future==0.14.3
24 futures==3.0.2
24 futures==3.0.2
25 gnureadline==6.3.8
25 gnureadline==6.3.8
26 infrae.cache==1.0.1
26 infrae.cache==1.0.1
27 iso8601==0.1.11
27 iso8601==0.1.11
28 itsdangerous==0.24
28 itsdangerous==0.24
29 Jinja2==2.9.6
29 jinja2==2.9.6
30 billiard==3.5.0.3
30 billiard==3.5.0.3
31 kombu==4.1.0
31 kombu==4.1.0
32 lxml==3.7.3
32 lxml==3.7.3
33 Mako==1.0.7
33 mako==1.0.7
34 Markdown==2.6.11
34 markdown==2.6.11
35 MarkupSafe==1.0.0
35 markupsafe==1.0.0
36 msgpack-python==0.4.8
36 msgpack-python==0.4.8
37 MySQL-python==1.2.5
37 mysql-python==1.2.5
38 objgraph==3.1.1
38 objgraph==3.1.1
39 packaging==15.2
39 packaging==15.2
40 Paste==2.0.3
40 paste==2.0.3
41 PasteDeploy==1.5.2
41 pastedeploy==1.5.2
42 PasteScript==2.0.2
42 pastescript==2.0.2
43 pathlib2==2.3.0
43 pathlib2==2.3.0
44 peppercorn==0.5
44 peppercorn==0.5
45 psutil==5.4.3
45 psutil==5.4.3
@@ -49,7 +49,7 b' pycrypto==2.6.1'
49 pycurl==7.19.5
49 pycurl==7.19.5
50 pyflakes==0.8.1
50 pyflakes==0.8.1
51 pygments-markdown-lexer==0.1.0.dev39
51 pygments-markdown-lexer==0.1.0.dev39
52 Pygments==2.2.0
52 pygments==2.2.0
53 pyparsing==1.5.7
53 pyparsing==1.5.7
54 pyramid-beaker==0.8
54 pyramid-beaker==0.8
55 pyramid-debugtoolbar==4.4.0
55 pyramid-debugtoolbar==4.4.0
@@ -69,7 +69,7 b' recaptcha-client==1.0.6'
69 redis==2.10.6
69 redis==2.10.6
70 repoze.lru==0.7
70 repoze.lru==0.7
71 requests==2.9.1
71 requests==2.9.1
72 Routes==2.4.1
72 routes==2.4.1
73 setproctitle==1.1.10
73 setproctitle==1.1.10
74 simplejson==3.11.1
74 simplejson==3.11.1
75 six==1.11.0
75 six==1.11.0
@@ -77,17 +77,17 b' sqlalchemy==1.1.18'
77 sshpubkeys==2.2.0
77 sshpubkeys==2.2.0
78 subprocess32==3.2.7
78 subprocess32==3.2.7
79 supervisor==3.3.4
79 supervisor==3.3.4
80 Tempita==0.5.2
80 tempita==0.5.2
81 translationstring==1.3
81 translationstring==1.3
82 trollius==1.0.4
82 trollius==1.0.4
83 urllib3==1.16
83 urllib3==1.16
84 urlobject==2.4.3
84 urlobject==2.4.3
85 venusian==1.1.0
85 venusian==1.1.0
86 WebError==0.10.3
86 weberror==0.10.3
87 WebHelpers2==2.0
87 webhelpers2==2.0
88 WebHelpers==1.3
88 webhelpers==1.3
89 WebOb==1.7.4
89 webob==1.7.4
90 Whoosh==2.7.4
90 whoosh==2.7.4
91 wsgiref==0.1.2
91 wsgiref==0.1.2
92 zope.cachedescriptors==4.3.1
92 zope.cachedescriptors==4.3.1
93 zope.deprecation==4.3.0
93 zope.deprecation==4.3.0
@@ -117,7 +117,7 b' waitress==1.1.0'
117 ## debug
117 ## debug
118 ipdb==0.11.0
118 ipdb==0.11.0
119 ipython==5.1.0
119 ipython==5.1.0
120 CProfileV==1.0.7
120 cprofilev==1.0.7
121 bottle==0.12.13
121 bottle==0.12.13
122
122
123 ## rhodecode-tools, special case
123 ## rhodecode-tools, special case
@@ -10,6 +10,6 b' gprof2dot==2017.9.19'
10 pytest-timeout==1.2.0
10 pytest-timeout==1.2.0
11
11
12 mock==1.0.1
12 mock==1.0.1
13 WebTest==2.0.29
13 webtest==2.0.29
14 cov-core==1.15.0
14 cov-core==1.15.0
15 coverage==3.7.1
15 coverage==3.7.1
General Comments 0
You need to be logged in to leave comments. Login now