##// END OF EJS Templates
dependencies: freeze few libraries for better rhodecode-ce compatability.
marcink -
r428:1ff51b51 default
parent child Browse files
Show More
@@ -2,45 +2,6 b''
2 # See https://github.com/johbo/pip2nix
2 # See https://github.com/johbo/pip2nix
3
3
4 {
4 {
5 Mako = super.buildPythonPackage {
6 name = "Mako-1.0.7";
7 buildInputs = with self; [];
8 doCheck = false;
9 propagatedBuildInputs = with self; [MarkupSafe];
10 src = fetchurl {
11 url = "https://files.pythonhosted.org/packages/eb/f3/67579bb486517c0d49547f9697e36582cd19dafb5df9e687ed8e22de57fa/Mako-1.0.7.tar.gz";
12 sha256 = "4e02fde57bd4abb5ec400181e4c314f56ac3e49ba4fb8b0d50bba18cb27d25ae";
13 };
14 meta = {
15 license = [ pkgs.lib.licenses.mit ];
16 };
17 };
18 MarkupSafe = super.buildPythonPackage {
19 name = "MarkupSafe-1.0";
20 buildInputs = with self; [];
21 doCheck = false;
22 propagatedBuildInputs = with self; [];
23 src = fetchurl {
24 url = "https://files.pythonhosted.org/packages/4d/de/32d741db316d8fdb7680822dd37001ef7a448255de9699ab4bfcbdf4172b/MarkupSafe-1.0.tar.gz";
25 sha256 = "a6be69091dac236ea9c6bc7d012beab42010fa914c459791d627dad4910eb665";
26 };
27 meta = {
28 license = [ pkgs.lib.licenses.bsdOriginal ];
29 };
30 };
31 PasteDeploy = super.buildPythonPackage {
32 name = "PasteDeploy-1.5.2";
33 buildInputs = with self; [];
34 doCheck = false;
35 propagatedBuildInputs = with self; [];
36 src = fetchurl {
37 url = "https://files.pythonhosted.org/packages/0f/90/8e20cdae206c543ea10793cbf4136eb9a8b3f417e04e40a29d72d9922cbd/PasteDeploy-1.5.2.tar.gz";
38 sha256 = "d5858f89a255e6294e63ed46b73613c56e3b9a2d82a42f1df4d06c8421a9e3cb";
39 };
40 meta = {
41 license = [ pkgs.lib.licenses.mit ];
42 };
43 };
44 backports.shutil-get-terminal-size = super.buildPythonPackage {
5 backports.shutil-get-terminal-size = super.buildPythonPackage {
45 name = "backports.shutil-get-terminal-size-1.0.0";
6 name = "backports.shutil-get-terminal-size-1.0.0";
46 buildInputs = with self; [];
7 buildInputs = with self; [];
@@ -314,6 +275,32 b''
314 license = [ pkgs.lib.licenses.bsdOriginal ];
275 license = [ pkgs.lib.licenses.bsdOriginal ];
315 };
276 };
316 };
277 };
278 mako = super.buildPythonPackage {
279 name = "mako-1.0.7";
280 buildInputs = with self; [];
281 doCheck = false;
282 propagatedBuildInputs = with self; [markupsafe];
283 src = fetchurl {
284 url = "https://files.pythonhosted.org/packages/eb/f3/67579bb486517c0d49547f9697e36582cd19dafb5df9e687ed8e22de57fa/Mako-1.0.7.tar.gz";
285 sha256 = "4e02fde57bd4abb5ec400181e4c314f56ac3e49ba4fb8b0d50bba18cb27d25ae";
286 };
287 meta = {
288 license = [ pkgs.lib.licenses.mit ];
289 };
290 };
291 markupsafe = super.buildPythonPackage {
292 name = "markupsafe-1.0";
293 buildInputs = with self; [];
294 doCheck = false;
295 propagatedBuildInputs = with self; [];
296 src = fetchurl {
297 url = "https://files.pythonhosted.org/packages/4d/de/32d741db316d8fdb7680822dd37001ef7a448255de9699ab4bfcbdf4172b/MarkupSafe-1.0.tar.gz";
298 sha256 = "a6be69091dac236ea9c6bc7d012beab42010fa914c459791d627dad4910eb665";
299 };
300 meta = {
301 license = [ pkgs.lib.licenses.bsdOriginal ];
302 };
303 };
317 mercurial = super.buildPythonPackage {
304 mercurial = super.buildPythonPackage {
318 name = "mercurial-4.4.2";
305 name = "mercurial-4.4.2";
319 buildInputs = with self; [];
306 buildInputs = with self; [];
@@ -353,6 +340,19 b''
353 license = [ pkgs.lib.licenses.asl20 ];
340 license = [ pkgs.lib.licenses.asl20 ];
354 };
341 };
355 };
342 };
343 pastedeploy = super.buildPythonPackage {
344 name = "pastedeploy-1.5.2";
345 buildInputs = with self; [];
346 doCheck = false;
347 propagatedBuildInputs = with self; [];
348 src = fetchurl {
349 url = "https://files.pythonhosted.org/packages/0f/90/8e20cdae206c543ea10793cbf4136eb9a8b3f417e04e40a29d72d9922cbd/PasteDeploy-1.5.2.tar.gz";
350 sha256 = "d5858f89a255e6294e63ed46b73613c56e3b9a2d82a42f1df4d06c8421a9e3cb";
351 };
352 meta = {
353 license = [ pkgs.lib.licenses.mit ];
354 };
355 };
356 pathlib2 = super.buildPythonPackage {
356 pathlib2 = super.buildPythonPackage {
357 name = "pathlib2-2.3.0";
357 name = "pathlib2-2.3.0";
358 buildInputs = with self; [];
358 buildInputs = with self; [];
@@ -409,7 +409,7 b''
409 name = "plaster-pastedeploy-0.5";
409 name = "plaster-pastedeploy-0.5";
410 buildInputs = with self; [];
410 buildInputs = with self; [];
411 doCheck = false;
411 doCheck = false;
412 propagatedBuildInputs = with self; [PasteDeploy plaster];
412 propagatedBuildInputs = with self; [pastedeploy plaster];
413 src = fetchurl {
413 src = fetchurl {
414 url = "https://files.pythonhosted.org/packages/e7/05/cc12d9d3efaa10046b6ec5de91b16486c95de4847dc57599bf58021a3d5c/plaster_pastedeploy-0.5.tar.gz";
414 url = "https://files.pythonhosted.org/packages/e7/05/cc12d9d3efaa10046b6ec5de91b16486c95de4847dc57599bf58021a3d5c/plaster_pastedeploy-0.5.tar.gz";
415 sha256 = "70a3185b2a3336996a26e9987968cf35e84cf13390b7e8a0a9a91eb8f6f85ba9";
415 sha256 = "70a3185b2a3336996a26e9987968cf35e84cf13390b7e8a0a9a91eb8f6f85ba9";
@@ -474,7 +474,7 b''
474 name = "pyramid-1.9.2";
474 name = "pyramid-1.9.2";
475 buildInputs = with self; [];
475 buildInputs = with self; [];
476 doCheck = false;
476 doCheck = false;
477 propagatedBuildInputs = with self; [setuptools webob repoze.lru zope.interface zope.deprecation venusian translationstring PasteDeploy plaster plaster-pastedeploy hupper];
477 propagatedBuildInputs = with self; [setuptools webob repoze.lru zope.interface zope.deprecation venusian translationstring pastedeploy plaster plaster-pastedeploy hupper];
478 src = fetchurl {
478 src = fetchurl {
479 url = "https://files.pythonhosted.org/packages/a0/c1/b321d07cfc4870541989ad131c86a1d593bfe802af0eca9718a0dadfb97a/pyramid-1.9.2.tar.gz";
479 url = "https://files.pythonhosted.org/packages/a0/c1/b321d07cfc4870541989ad131c86a1d593bfe802af0eca9718a0dadfb97a/pyramid-1.9.2.tar.gz";
480 sha256 = "cf89a48cb899291639686bf3d4a883b39e496151fa4871fb83cc1a3200d5b925";
480 sha256 = "cf89a48cb899291639686bf3d4a883b39e496151fa4871fb83cc1a3200d5b925";
@@ -487,7 +487,7 b''
487 name = "pyramid-mako-1.0.2";
487 name = "pyramid-mako-1.0.2";
488 buildInputs = with self; [];
488 buildInputs = with self; [];
489 doCheck = false;
489 doCheck = false;
490 propagatedBuildInputs = with self; [pyramid Mako];
490 propagatedBuildInputs = with self; [pyramid mako];
491 src = fetchurl {
491 src = fetchurl {
492 url = "https://files.pythonhosted.org/packages/f1/92/7e69bcf09676d286a71cb3bbb887b16595b96f9ba7adbdc239ffdd4b1eb9/pyramid_mako-1.0.2.tar.gz";
492 url = "https://files.pythonhosted.org/packages/f1/92/7e69bcf09676d286a71cb3bbb887b16595b96f9ba7adbdc239ffdd4b1eb9/pyramid_mako-1.0.2.tar.gz";
493 sha256 = "6da0987b9874cf53e72139624665a73965bbd7fbde504d1753e4231ce916f3a1";
493 sha256 = "6da0987b9874cf53e72139624665a73965bbd7fbde504d1753e4231ce916f3a1";
@@ -604,7 +604,7 b''
604 name = "rhodecode-vcsserver-4.13.0";
604 name = "rhodecode-vcsserver-4.13.0";
605 buildInputs = with self; [pytest py pytest-cov pytest-sugar pytest-runner pytest-catchlog pytest-profiling gprof2dot pytest-timeout mock webtest cov-core coverage configobj];
605 buildInputs = with self; [pytest py pytest-cov pytest-sugar pytest-runner pytest-catchlog pytest-profiling gprof2dot pytest-timeout mock webtest cov-core coverage configobj];
606 doCheck = true;
606 doCheck = true;
607 propagatedBuildInputs = with self; [beaker configobj decorator dulwich hgsubversion hg-evolve infrae.cache mercurial msgpack-python pyramid pyramid-mako pygments pathlib2 repoze.lru simplejson subprocess32 subvertpy six translationstring webob wheel zope.deprecation zope.interface gevent greenlet gunicorn waitress ipdb ipython pytest py pytest-cov pytest-sugar pytest-runner pytest-catchlog pytest-profiling gprof2dot pytest-timeout mock webtest cov-core coverage];
607 propagatedBuildInputs = with self; [beaker configobj decorator dulwich hgsubversion hg-evolve infrae.cache mako markupsafe mercurial msgpack-python pastedeploy pyramid pyramid-mako pygments pathlib2 repoze.lru simplejson subprocess32 subvertpy six translationstring webob wheel zope.deprecation zope.interface gevent greenlet gunicorn waitress ipdb ipython pytest py pytest-cov pytest-sugar pytest-runner pytest-catchlog pytest-profiling gprof2dot pytest-timeout mock webtest cov-core coverage];
608 src = ./.;
608 src = ./.;
609 meta = {
609 meta = {
610 license = [ { fullName = "GPL V3"; } { fullName = "GNU General Public License v3 or later (GPLv3+)"; } ];
610 license = [ { fullName = "GPL V3"; } { fullName = "GNU General Public License v3 or later (GPLv3+)"; } ];
@@ -8,11 +8,15 b' dulwich==0.13.0'
8 hgsubversion==1.9.1
8 hgsubversion==1.9.1
9 hg-evolve==7.3.0
9 hg-evolve==7.3.0
10 infrae.cache==1.0.1
10 infrae.cache==1.0.1
11 mako==1.0.7
12 markupsafe==1.0.0
11 mercurial==4.4.2
13 mercurial==4.4.2
12 msgpack-python==0.4.8
14 msgpack-python==0.4.8
13
15
16 pastedeploy==1.5.2
14 pyramid==1.9.2
17 pyramid==1.9.2
15 pyramid-mako==1.0.2
18 pyramid-mako==1.0.2
19
16 pygments==2.2.0
20 pygments==2.2.0
17 pathlib2==2.3.0
21 pathlib2==2.3.0
18 repoze.lru==0.7
22 repoze.lru==0.7
General Comments 0
You need to be logged in to leave comments. Login now