##// END OF EJS Templates
Merge branch default into stable
marcink -
r19:a359c072 merge v4.1.0 stable
parent child Browse files
Show More
@@ -1,6 +1,6 b''
1 [bumpversion]
1 [bumpversion]
2 current_version = 4.0.1
2 current_version = 4.1.0
3 message = release: Bump version {current_version} to {new_version}
3 message = release: Bump version {current_version} to {new_version}
4
4
5 [bumpversion:file:vcsserver/VERSION]
5 [bumpversion:file:vcsserver/VERSION]
6
6
@@ -1,50 +1,36 b''
1 syntax: glob
1 syntax: glob
2 *.orig
2 *.orig
3 *.pyc
3 *.pyc
4 *.swp
4 *.swp
5 *.sqlite
6 *.sqlite-journal
7 *.tox
5 *.tox
8 *.egg-info
6 *.egg-info
9 *.egg
7 *.egg
10 *.idea
8 *.idea
11 .DS_Store*
9 .DS_Store*
12
10
13
11
14 syntax: regexp
12 syntax: regexp
15
13
16 #.filename
14 #.filename
17 ^\.settings$
15 ^\.settings$
18 ^\.project$
16 ^\.project$
19 ^\.pydevproject$
17 ^\.pydevproject$
20 ^\.coverage$
18 ^\.coverage$
21 ^\.cache.*$
19 ^\.cache.*$
22 ^\.rhodecode$
20 ^\.rhodecode$
23
21
24 ^rcextensions
25 ^_dev
22 ^_dev
26 ^._dev
23 ^._dev
27 ^build/
24 ^build/
28 ^coverage\.xml$
25 ^coverage\.xml$
29 ^data$
26 ^data$
30 ^dev.ini$
27 ^dev.ini$
31 ^acceptance_tests/dev.*\.ini$
28 ^acceptance_tests/dev.*\.ini$
32 ^dist/
29 ^dist/
33 ^fabfile.py
30 ^fabfile.py
34 ^htmlcov
31 ^htmlcov
35 ^junit\.xml$
32 ^junit\.xml$
36 ^node_modules/
33 ^node_modules/
37 ^pylint.log$
34 ^pylint.log$
38 ^rcextensions/
39 ^rhodecode/public/css/style.css$
40 ^rhodecode/public/js/scripts.js$
41 ^rhodecode\.db$
42 ^rhodecode\.log$
43 ^rhodecode_dev\.log$
44 ^test\.db$
45 ^build$
35 ^build$
46 ^coverage\.xml$
47 ^htmlcov
48 ^junit\.xml$
49 ^pylint.log$
50 ^result$
36 ^result$
@@ -1,93 +1,79 b''
1 ################################################################################
1 ################################################################################
2 # RhodeCode VCSServer - configuration #
2 # RhodeCode VCSServer - configuration #
3 # #
3 # #
4 ################################################################################
4 ################################################################################
5
5
6 [DEFAULT]
6 [DEFAULT]
7 host = 127.0.0.1
7 host = 127.0.0.1
8 port = 9900
8 port = 9900
9 locale = en_US.UTF-8
9 locale = en_US.UTF-8
10 # number of worker threads, this should be set based on a formula threadpool=N*6
10 # number of worker threads, this should be set based on a formula threadpool=N*6
11 # where N is number of RhodeCode Enterprise workers, eg. running 2 instances
11 # where N is number of RhodeCode Enterprise workers, eg. running 2 instances
12 # 8 gunicorn workers each would be 2 * 8 * 6 = 96, threadpool_size = 96
12 # 8 gunicorn workers each would be 2 * 8 * 6 = 96, threadpool_size = 96
13 threadpool_size = 96
13 threadpool_size = 96
14 timeout = 0
14 timeout = 0
15
15
16 # cache regions, please don't change
16 # cache regions, please don't change
17 beaker.cache.regions = repo_object
17 beaker.cache.regions = repo_object
18 beaker.cache.repo_object.type = memorylru
18 beaker.cache.repo_object.type = memorylru
19 beaker.cache.repo_object.max_items = 100
19 beaker.cache.repo_object.max_items = 100
20 # cache auto-expires after N seconds
20 # cache auto-expires after N seconds
21 beaker.cache.repo_object.expire = 300
21 beaker.cache.repo_object.expire = 300
22 beaker.cache.repo_object.enabled = true
22 beaker.cache.repo_object.enabled = true
23
23
24
24
25 ################################
25 ################################
26 ### LOGGING CONFIGURATION ####
26 ### LOGGING CONFIGURATION ####
27 ################################
27 ################################
28 [loggers]
28 [loggers]
29 keys = root, vcsserver, pyro4, beaker
29 keys = root, vcsserver, pyro4, beaker
30
30
31 [handlers]
31 [handlers]
32 keys = console
32 keys = console
33
33
34 [formatters]
34 [formatters]
35 keys = generic
35 keys = generic
36
36
37 #############
37 #############
38 ## LOGGERS ##
38 ## LOGGERS ##
39 #############
39 #############
40 [logger_root]
40 [logger_root]
41 level = NOTSET
41 level = NOTSET
42 handlers = console
42 handlers = console
43
43
44 [logger_vcsserver]
44 [logger_vcsserver]
45 level = DEBUG
45 level = DEBUG
46 handlers =
46 handlers =
47 qualname = vcsserver
47 qualname = vcsserver
48 propagate = 1
48 propagate = 1
49
49
50 [logger_beaker]
50 [logger_beaker]
51 level = DEBUG
51 level = DEBUG
52 handlers =
52 handlers =
53 qualname = beaker
53 qualname = beaker
54 propagate = 1
54 propagate = 1
55
55
56 [logger_pyro4]
56 [logger_pyro4]
57 level = DEBUG
57 level = DEBUG
58 handlers =
58 handlers =
59 qualname = Pyro4
59 qualname = Pyro4
60 propagate = 1
60 propagate = 1
61
61
62
62
63 ##############
63 ##############
64 ## HANDLERS ##
64 ## HANDLERS ##
65 ##############
65 ##############
66
66
67 [handler_console]
67 [handler_console]
68 class = StreamHandler
68 class = StreamHandler
69 args = (sys.stderr,)
69 args = (sys.stderr,)
70 level = DEBUG
70 level = DEBUG
71 formatter = generic
71 formatter = generic
72
72
73 [handler_file]
74 class = FileHandler
75 args = ('vcsserver.log', 'a',)
76 level = DEBUG
77 formatter = generic
78
79 [handler_file_rotating]
80 class = logging.handlers.TimedRotatingFileHandler
81 # 'D', 5 - rotate every 5days
82 # you can set 'h', 'midnight'
83 args = ('vcsserver.log', 'D', 5, 10,)
84 level = DEBUG
85 formatter = generic
86
87 ################
73 ################
88 ## FORMATTERS ##
74 ## FORMATTERS ##
89 ################
75 ################
90
76
91 [formatter_generic]
77 [formatter_generic]
92 format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
78 format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
93 datefmt = %Y-%m-%d %H:%M:%S
79 datefmt = %Y-%m-%d %H:%M:%S
@@ -1,70 +1,82 b''
1 ################################################################################
2 # RhodeCode VCSServer - configuration #
3 # #
4 ################################################################################
5
1 [app:main]
6 [app:main]
2 use = egg:rhodecode-vcsserver
7 use = egg:rhodecode-vcsserver
3 pyramid.reload_templates = true
8
4 pyramid.default_locale_name = en
9 pyramid.default_locale_name = en
5 pyramid.includes =
10 pyramid.includes =
11
12 locale = en_US.UTF-8
13
6 # cache regions, please don't change
14 # cache regions, please don't change
7 beaker.cache.regions = repo_object
15 beaker.cache.regions = repo_object
8 beaker.cache.repo_object.type = memorylru
16 beaker.cache.repo_object.type = memorylru
9 beaker.cache.repo_object.max_items = 100
17 beaker.cache.repo_object.max_items = 100
10 # cache auto-expires after N seconds
18 # cache auto-expires after N seconds
11 beaker.cache.repo_object.expire = 300
19 beaker.cache.repo_object.expire = 300
12 beaker.cache.repo_object.enabled = true
20 beaker.cache.repo_object.enabled = true
13 locale = en_US.UTF-8
14
15
21
16 [server:main]
22 [server:main]
17 use = egg:waitress#main
23 use = egg:waitress#main
18 host = 0.0.0.0
24 host = 0.0.0.0
19 port = %(http_port)s
25 port = %(http_port)s
20
26
21
27
22 ################################
28 ################################
23 ### LOGGING CONFIGURATION ####
29 ### LOGGING CONFIGURATION ####
24 ################################
30 ################################
25 [loggers]
31 [loggers]
26 keys = root, vcsserver, beaker
32 keys = root, vcsserver, pyro4, beaker
27
33
28 [handlers]
34 [handlers]
29 keys = console
35 keys = console
30
36
31 [formatters]
37 [formatters]
32 keys = generic
38 keys = generic
33
39
34 #############
40 #############
35 ## LOGGERS ##
41 ## LOGGERS ##
36 #############
42 #############
37 [logger_root]
43 [logger_root]
38 level = NOTSET
44 level = NOTSET
39 handlers = console
45 handlers = console
40
46
41 [logger_vcsserver]
47 [logger_vcsserver]
42 level = DEBUG
48 level = DEBUG
43 handlers =
49 handlers =
44 qualname = vcsserver
50 qualname = vcsserver
45 propagate = 1
51 propagate = 1
46
52
47 [logger_beaker]
53 [logger_beaker]
48 level = DEBUG
54 level = DEBUG
49 handlers =
55 handlers =
50 qualname = beaker
56 qualname = beaker
51 propagate = 1
57 propagate = 1
52
58
59 [logger_pyro4]
60 level = DEBUG
61 handlers =
62 qualname = Pyro4
63 propagate = 1
64
53
65
54 ##############
66 ##############
55 ## HANDLERS ##
67 ## HANDLERS ##
56 ##############
68 ##############
57
69
58 [handler_console]
70 [handler_console]
59 class = StreamHandler
71 class = StreamHandler
60 args = (sys.stderr,)
72 args = (sys.stderr,)
61 level = DEBUG
73 level = DEBUG
62 formatter = generic
74 formatter = generic
63
75
64 ################
76 ################
65 ## FORMATTERS ##
77 ## FORMATTERS ##
66 ################
78 ################
67
79
68 [formatter_generic]
80 [formatter_generic]
69 format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
81 format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
70 datefmt = %Y-%m-%d %H:%M:%S
82 datefmt = %Y-%m-%d %H:%M:%S
@@ -1,93 +1,79 b''
1 ################################################################################
1 ################################################################################
2 # RhodeCode VCSServer - configuration #
2 # RhodeCode VCSServer - configuration #
3 # #
3 # #
4 ################################################################################
4 ################################################################################
5
5
6 [DEFAULT]
6 [DEFAULT]
7 host = 127.0.0.1
7 host = 127.0.0.1
8 port = 9900
8 port = 9900
9 locale = en_US.UTF-8
9 locale = en_US.UTF-8
10 # number of worker threads, this should be set based on a formula threadpool=N*6
10 # number of worker threads, this should be set based on a formula threadpool=N*6
11 # where N is number of RhodeCode Enterprise workers, eg. running 2 instances
11 # where N is number of RhodeCode Enterprise workers, eg. running 2 instances
12 # 8 gunicorn workers each would be 2 * 8 * 6 = 96, threadpool_size = 96
12 # 8 gunicorn workers each would be 2 * 8 * 6 = 96, threadpool_size = 96
13 threadpool_size = 96
13 threadpool_size = 96
14 timeout = 0
14 timeout = 0
15
15
16 # cache regions, please don't change
16 # cache regions, please don't change
17 beaker.cache.regions = repo_object
17 beaker.cache.regions = repo_object
18 beaker.cache.repo_object.type = memorylru
18 beaker.cache.repo_object.type = memorylru
19 beaker.cache.repo_object.max_items = 100
19 beaker.cache.repo_object.max_items = 100
20 # cache auto-expires after N seconds
20 # cache auto-expires after N seconds
21 beaker.cache.repo_object.expire = 300
21 beaker.cache.repo_object.expire = 300
22 beaker.cache.repo_object.enabled = true
22 beaker.cache.repo_object.enabled = true
23
23
24
24
25 ################################
25 ################################
26 ### LOGGING CONFIGURATION ####
26 ### LOGGING CONFIGURATION ####
27 ################################
27 ################################
28 [loggers]
28 [loggers]
29 keys = root, vcsserver, pyro4, beaker
29 keys = root, vcsserver, pyro4, beaker
30
30
31 [handlers]
31 [handlers]
32 keys = console
32 keys = console
33
33
34 [formatters]
34 [formatters]
35 keys = generic
35 keys = generic
36
36
37 #############
37 #############
38 ## LOGGERS ##
38 ## LOGGERS ##
39 #############
39 #############
40 [logger_root]
40 [logger_root]
41 level = NOTSET
41 level = NOTSET
42 handlers = console
42 handlers = console
43
43
44 [logger_vcsserver]
44 [logger_vcsserver]
45 level = DEBUG
45 level = DEBUG
46 handlers =
46 handlers =
47 qualname = vcsserver
47 qualname = vcsserver
48 propagate = 1
48 propagate = 1
49
49
50 [logger_beaker]
50 [logger_beaker]
51 level = DEBUG
51 level = DEBUG
52 handlers =
52 handlers =
53 qualname = beaker
53 qualname = beaker
54 propagate = 1
54 propagate = 1
55
55
56 [logger_pyro4]
56 [logger_pyro4]
57 level = DEBUG
57 level = DEBUG
58 handlers =
58 handlers =
59 qualname = Pyro4
59 qualname = Pyro4
60 propagate = 1
60 propagate = 1
61
61
62
62
63 ##############
63 ##############
64 ## HANDLERS ##
64 ## HANDLERS ##
65 ##############
65 ##############
66
66
67 [handler_console]
67 [handler_console]
68 class = StreamHandler
68 class = StreamHandler
69 args = (sys.stderr,)
69 args = (sys.stderr,)
70 level = DEBUG
70 level = DEBUG
71 formatter = generic
71 formatter = generic
72
72
73 [handler_file]
74 class = FileHandler
75 args = ('vcsserver.log', 'a',)
76 level = DEBUG
77 formatter = generic
78
79 [handler_file_rotating]
80 class = logging.handlers.TimedRotatingFileHandler
81 # 'D', 5 - rotate every 5days
82 # you can set 'h', 'midnight'
83 args = ('vcsserver.log', 'D', 5, 10,)
84 level = DEBUG
85 formatter = generic
86
87 ################
73 ################
88 ## FORMATTERS ##
74 ## FORMATTERS ##
89 ################
75 ################
90
76
91 [formatter_generic]
77 [formatter_generic]
92 format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
78 format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
93 datefmt = %Y-%m-%d %H:%M:%S
79 datefmt = %Y-%m-%d %H:%M:%S
@@ -1,139 +1,144 b''
1 # Nix environment for the community edition
1 # Nix environment for the community edition
2 #
2 #
3 # This shall be as lean as possible, just producing the rhodecode-vcsserver
3 # This shall be as lean as possible, just producing the rhodecode-vcsserver
4 # derivation. For advanced tweaks to pimp up the development environment we use
4 # derivation. For advanced tweaks to pimp up the development environment we use
5 # "shell.nix" so that it does not have to clutter this file.
5 # "shell.nix" so that it does not have to clutter this file.
6
6
7 { pkgs ? (import <nixpkgs> {})
7 { pkgs ? (import <nixpkgs> {})
8 , pythonPackages ? "python27Packages"
8 , pythonPackages ? "python27Packages"
9 , pythonExternalOverrides ? self: super: {}
9 , pythonExternalOverrides ? self: super: {}
10 , doCheck ? true
10 , doCheck ? true
11 }:
11 }:
12
12
13 let pkgs_ = pkgs; in
13 let pkgs_ = pkgs; in
14
14
15 let
15 let
16 pkgs = pkgs_.overridePackages (self: super: {
16 pkgs = pkgs_.overridePackages (self: super: {
17 # Override subversion derivation to
17 # Override subversion derivation to
18 # - activate python bindings
18 # - activate python bindings
19 # - set version to 1.8
19 # - set version to 1.8
20 subversion = super.subversion18.override {
20 subversion = super.subversion18.override {
21 httpSupport = true;
21 httpSupport = true;
22 pythonBindings = true;
22 pythonBindings = true;
23 python = self.python27Packages.python;
23 python = self.python27Packages.python;
24 };
24 };
25 });
25 });
26
26
27 inherit (pkgs.lib) fix extends;
27 inherit (pkgs.lib) fix extends;
28
28
29 basePythonPackages = with builtins; if isAttrs pythonPackages
29 basePythonPackages = with builtins; if isAttrs pythonPackages
30 then pythonPackages
30 then pythonPackages
31 else getAttr pythonPackages pkgs;
31 else getAttr pythonPackages pkgs;
32
32
33 elem = builtins.elem;
33 elem = builtins.elem;
34 basename = path: with pkgs.lib; last (splitString "/" path);
34 basename = path: with pkgs.lib; last (splitString "/" path);
35 startsWith = prefix: full: let
35 startsWith = prefix: full: let
36 actualPrefix = builtins.substring 0 (builtins.stringLength prefix) full;
36 actualPrefix = builtins.substring 0 (builtins.stringLength prefix) full;
37 in actualPrefix == prefix;
37 in actualPrefix == prefix;
38
38
39 src-filter = path: type: with pkgs.lib;
39 src-filter = path: type: with pkgs.lib;
40 let
40 let
41 ext = last (splitString "." path);
41 ext = last (splitString "." path);
42 in
42 in
43 !elem (basename path) [
43 !elem (basename path) [
44 ".git" ".hg" "__pycache__" ".eggs" "node_modules"
44 ".git" ".hg" "__pycache__" ".eggs" "node_modules"
45 "build" "data" "tmp"] &&
45 "build" "data" "tmp"] &&
46 !elem ext ["egg-info" "pyc"] &&
46 !elem ext ["egg-info" "pyc"] &&
47 !startsWith "result" path;
47 !startsWith "result" path;
48
48
49 rhodecode-vcsserver-src = builtins.filterSource src-filter ./.;
49 rhodecode-vcsserver-src = builtins.filterSource src-filter ./.;
50
50
51 pythonGeneratedPackages = self: basePythonPackages.override (a: {
51 pythonGeneratedPackages = self: basePythonPackages.override (a: {
52 inherit self;
52 inherit self;
53 })
53 })
54 // (scopedImport {
54 // (scopedImport {
55 self = self;
55 self = self;
56 super = basePythonPackages;
56 super = basePythonPackages;
57 inherit pkgs;
57 inherit pkgs;
58 inherit (pkgs) fetchurl fetchgit;
58 inherit (pkgs) fetchurl fetchgit;
59 } ./pkgs/python-packages.nix);
59 } ./pkgs/python-packages.nix);
60
60
61 pythonOverrides = import ./pkgs/python-packages-overrides.nix {
61 pythonOverrides = import ./pkgs/python-packages-overrides.nix {
62 inherit
62 inherit
63 basePythonPackages
63 basePythonPackages
64 pkgs;
64 pkgs;
65 };
65 };
66
66
67 version = builtins.readFile ./vcsserver/VERSION;
68
67 pythonLocalOverrides = self: super: {
69 pythonLocalOverrides = self: super: {
68 rhodecode-vcsserver = super.rhodecode-vcsserver.override (attrs: {
70 rhodecode-vcsserver = super.rhodecode-vcsserver.override (attrs: {
71 inherit
72 doCheck
73 version;
74 name = "rhodecode-vcsserver-${version}";
69 src = rhodecode-vcsserver-src;
75 src = rhodecode-vcsserver-src;
70 inherit doCheck;
71
76
72 propagatedBuildInputs = attrs.propagatedBuildInputs ++ ([
77 propagatedBuildInputs = attrs.propagatedBuildInputs ++ ([
73 pkgs.git
78 pkgs.git
74 pkgs.subversion
79 pkgs.subversion
75 ]);
80 ]);
76
81
77 # TODO: johbo: Make a nicer way to expose the parts. Maybe
82 # TODO: johbo: Make a nicer way to expose the parts. Maybe
78 # pkgs/default.nix?
83 # pkgs/default.nix?
79 passthru = {
84 passthru = {
80 pythonPackages = self;
85 pythonPackages = self;
81 };
86 };
82
87
83 # Somewhat snappier setup of the development environment
88 # Somewhat snappier setup of the development environment
84 # TODO: move into shell.nix
89 # TODO: move into shell.nix
85 # TODO: think of supporting a stable path again, so that multiple shells
90 # TODO: think of supporting a stable path again, so that multiple shells
86 # can share it.
91 # can share it.
87 shellHook = ''
92 shellHook = ''
88 # Set locale
93 # Set locale
89 export LC_ALL="en_US.UTF-8"
94 export LC_ALL="en_US.UTF-8"
90
95
91 tmp_path=$(mktemp -d)
96 tmp_path=$(mktemp -d)
92 export PATH="$tmp_path/bin:$PATH"
97 export PATH="$tmp_path/bin:$PATH"
93 export PYTHONPATH="$tmp_path/${self.python.sitePackages}:$PYTHONPATH"
98 export PYTHONPATH="$tmp_path/${self.python.sitePackages}:$PYTHONPATH"
94 mkdir -p $tmp_path/${self.python.sitePackages}
99 mkdir -p $tmp_path/${self.python.sitePackages}
95 python setup.py develop --prefix $tmp_path --allow-hosts ""
100 python setup.py develop --prefix $tmp_path --allow-hosts ""
96 '';
101 '';
97
102
98 # Add VCSServer bin directory to path so that tests can find 'vcsserver'.
103 # Add VCSServer bin directory to path so that tests can find 'vcsserver'.
99 preCheck = ''
104 preCheck = ''
100 export PATH="$out/bin:$PATH"
105 export PATH="$out/bin:$PATH"
101 '';
106 '';
102
107
103 postInstall = ''
108 postInstall = ''
104 echo "Writing meta information for rccontrol to nix-support/rccontrol"
109 echo "Writing meta information for rccontrol to nix-support/rccontrol"
105 mkdir -p $out/nix-support/rccontrol
110 mkdir -p $out/nix-support/rccontrol
106 cp -v vcsserver/VERSION $out/nix-support/rccontrol/version
111 cp -v vcsserver/VERSION $out/nix-support/rccontrol/version
107 echo "DONE: Meta information for rccontrol written"
112 echo "DONE: Meta information for rccontrol written"
108
113
109 ln -s ${self.pyramid}/bin/* $out/bin #*/
114 ln -s ${self.pyramid}/bin/* $out/bin #*/
110 ln -s ${self.gunicorn}/bin/gunicorn $out/bin/
115 ln -s ${self.gunicorn}/bin/gunicorn $out/bin/
111
116
112 # Symlink version control utilities
117 # Symlink version control utilities
113 #
118 #
114 # We ensure that always the correct version is available as a symlink.
119 # We ensure that always the correct version is available as a symlink.
115 # So that users calling them via the profile path will always use the
120 # So that users calling them via the profile path will always use the
116 # correct version.
121 # correct version.
117 ln -s ${pkgs.git}/bin/git $out/bin
122 ln -s ${pkgs.git}/bin/git $out/bin
118 ln -s ${self.mercurial}/bin/hg $out/bin
123 ln -s ${self.mercurial}/bin/hg $out/bin
119 ln -s ${pkgs.subversion}/bin/svn* $out/bin
124 ln -s ${pkgs.subversion}/bin/svn* $out/bin
120
125
121 for file in $out/bin/*; do #*/
126 for file in $out/bin/*; do #*/
122 wrapProgram $file \
127 wrapProgram $file \
123 --prefix PYTHONPATH : $PYTHONPATH \
128 --prefix PYTHONPATH : $PYTHONPATH \
124 --set PYTHONHASHSEED random
129 --set PYTHONHASHSEED random
125 done
130 done
126 '';
131 '';
127
132
128 });
133 });
129 };
134 };
130
135
131 # Apply all overrides and fix the final package set
136 # Apply all overrides and fix the final package set
132 myPythonPackages =
137 myPythonPackages =
133 (fix
138 (fix
134 (extends pythonExternalOverrides
139 (extends pythonExternalOverrides
135 (extends pythonLocalOverrides
140 (extends pythonLocalOverrides
136 (extends pythonOverrides
141 (extends pythonOverrides
137 pythonGeneratedPackages))));
142 pythonGeneratedPackages))));
138
143
139 in myPythonPackages.rhodecode-vcsserver
144 in myPythonPackages.rhodecode-vcsserver
@@ -1,363 +1,363 b''
1 {
1 {
2 Beaker = super.buildPythonPackage {
2 Beaker = super.buildPythonPackage {
3 name = "Beaker-1.7.0";
3 name = "Beaker-1.7.0";
4 buildInputs = with self; [];
4 buildInputs = with self; [];
5 doCheck = false;
5 doCheck = false;
6 propagatedBuildInputs = with self; [];
6 propagatedBuildInputs = with self; [];
7 src = fetchurl {
7 src = fetchurl {
8 url = "https://pypi.python.org/packages/97/8e/409d2e7c009b8aa803dc9e6f239f1db7c3cdf578249087a404e7c27a505d/Beaker-1.7.0.tar.gz";
8 url = "https://pypi.python.org/packages/97/8e/409d2e7c009b8aa803dc9e6f239f1db7c3cdf578249087a404e7c27a505d/Beaker-1.7.0.tar.gz";
9 md5 = "386be3f7fe427358881eee4622b428b3";
9 md5 = "386be3f7fe427358881eee4622b428b3";
10 };
10 };
11 };
11 };
12 Jinja2 = super.buildPythonPackage {
12 Jinja2 = super.buildPythonPackage {
13 name = "Jinja2-2.8";
13 name = "Jinja2-2.8";
14 buildInputs = with self; [];
14 buildInputs = with self; [];
15 doCheck = false;
15 doCheck = false;
16 propagatedBuildInputs = with self; [MarkupSafe];
16 propagatedBuildInputs = with self; [MarkupSafe];
17 src = fetchurl {
17 src = fetchurl {
18 url = "https://pypi.python.org/packages/f2/2f/0b98b06a345a761bec91a079ccae392d282690c2d8272e708f4d10829e22/Jinja2-2.8.tar.gz";
18 url = "https://pypi.python.org/packages/f2/2f/0b98b06a345a761bec91a079ccae392d282690c2d8272e708f4d10829e22/Jinja2-2.8.tar.gz";
19 md5 = "edb51693fe22c53cee5403775c71a99e";
19 md5 = "edb51693fe22c53cee5403775c71a99e";
20 };
20 };
21 };
21 };
22 Mako = super.buildPythonPackage {
22 Mako = super.buildPythonPackage {
23 name = "Mako-1.0.4";
23 name = "Mako-1.0.4";
24 buildInputs = with self; [];
24 buildInputs = with self; [];
25 doCheck = false;
25 doCheck = false;
26 propagatedBuildInputs = with self; [MarkupSafe];
26 propagatedBuildInputs = with self; [MarkupSafe];
27 src = fetchurl {
27 src = fetchurl {
28 url = "https://pypi.python.org/packages/7a/ae/925434246ee90b42e8ef57d3b30a0ab7caf9a2de3e449b876c56dcb48155/Mako-1.0.4.tar.gz";
28 url = "https://pypi.python.org/packages/7a/ae/925434246ee90b42e8ef57d3b30a0ab7caf9a2de3e449b876c56dcb48155/Mako-1.0.4.tar.gz";
29 md5 = "c5fc31a323dd4990683d2f2da02d4e20";
29 md5 = "c5fc31a323dd4990683d2f2da02d4e20";
30 };
30 };
31 };
31 };
32 MarkupSafe = super.buildPythonPackage {
32 MarkupSafe = super.buildPythonPackage {
33 name = "MarkupSafe-0.23";
33 name = "MarkupSafe-0.23";
34 buildInputs = with self; [];
34 buildInputs = with self; [];
35 doCheck = false;
35 doCheck = false;
36 propagatedBuildInputs = with self; [];
36 propagatedBuildInputs = with self; [];
37 src = fetchurl {
37 src = fetchurl {
38 url = "https://pypi.python.org/packages/c0/41/bae1254e0396c0cc8cf1751cb7d9afc90a602353695af5952530482c963f/MarkupSafe-0.23.tar.gz";
38 url = "https://pypi.python.org/packages/c0/41/bae1254e0396c0cc8cf1751cb7d9afc90a602353695af5952530482c963f/MarkupSafe-0.23.tar.gz";
39 md5 = "f5ab3deee4c37cd6a922fb81e730da6e";
39 md5 = "f5ab3deee4c37cd6a922fb81e730da6e";
40 };
40 };
41 };
41 };
42 PasteDeploy = super.buildPythonPackage {
42 PasteDeploy = super.buildPythonPackage {
43 name = "PasteDeploy-1.5.2";
43 name = "PasteDeploy-1.5.2";
44 buildInputs = with self; [];
44 buildInputs = with self; [];
45 doCheck = false;
45 doCheck = false;
46 propagatedBuildInputs = with self; [];
46 propagatedBuildInputs = with self; [];
47 src = fetchurl {
47 src = fetchurl {
48 url = "https://pypi.python.org/packages/0f/90/8e20cdae206c543ea10793cbf4136eb9a8b3f417e04e40a29d72d9922cbd/PasteDeploy-1.5.2.tar.gz";
48 url = "https://pypi.python.org/packages/0f/90/8e20cdae206c543ea10793cbf4136eb9a8b3f417e04e40a29d72d9922cbd/PasteDeploy-1.5.2.tar.gz";
49 md5 = "352b7205c78c8de4987578d19431af3b";
49 md5 = "352b7205c78c8de4987578d19431af3b";
50 };
50 };
51 };
51 };
52 Pyro4 = super.buildPythonPackage {
52 Pyro4 = super.buildPythonPackage {
53 name = "Pyro4-4.41";
53 name = "Pyro4-4.41";
54 buildInputs = with self; [];
54 buildInputs = with self; [];
55 doCheck = false;
55 doCheck = false;
56 propagatedBuildInputs = with self; [serpent];
56 propagatedBuildInputs = with self; [serpent];
57 src = fetchurl {
57 src = fetchurl {
58 url = "https://pypi.python.org/packages/56/2b/89b566b4bf3e7f8ba790db2d1223852f8cb454c52cab7693dd41f608ca2a/Pyro4-4.41.tar.gz";
58 url = "https://pypi.python.org/packages/56/2b/89b566b4bf3e7f8ba790db2d1223852f8cb454c52cab7693dd41f608ca2a/Pyro4-4.41.tar.gz";
59 md5 = "ed69e9bfafa9c06c049a87cb0c4c2b6c";
59 md5 = "ed69e9bfafa9c06c049a87cb0c4c2b6c";
60 };
60 };
61 };
61 };
62 WebOb = super.buildPythonPackage {
62 WebOb = super.buildPythonPackage {
63 name = "WebOb-1.3.1";
63 name = "WebOb-1.3.1";
64 buildInputs = with self; [];
64 buildInputs = with self; [];
65 doCheck = false;
65 doCheck = false;
66 propagatedBuildInputs = with self; [];
66 propagatedBuildInputs = with self; [];
67 src = fetchurl {
67 src = fetchurl {
68 url = "https://pypi.python.org/packages/16/78/adfc0380b8a0d75b2d543fa7085ba98a573b1ae486d9def88d172b81b9fa/WebOb-1.3.1.tar.gz";
68 url = "https://pypi.python.org/packages/16/78/adfc0380b8a0d75b2d543fa7085ba98a573b1ae486d9def88d172b81b9fa/WebOb-1.3.1.tar.gz";
69 md5 = "20918251c5726956ba8fef22d1556177";
69 md5 = "20918251c5726956ba8fef22d1556177";
70 };
70 };
71 };
71 };
72 WebTest = super.buildPythonPackage {
72 WebTest = super.buildPythonPackage {
73 name = "WebTest-1.4.3";
73 name = "WebTest-1.4.3";
74 buildInputs = with self; [];
74 buildInputs = with self; [];
75 doCheck = false;
75 doCheck = false;
76 propagatedBuildInputs = with self; [WebOb];
76 propagatedBuildInputs = with self; [WebOb];
77 src = fetchurl {
77 src = fetchurl {
78 url = "https://pypi.python.org/packages/51/3d/84fd0f628df10b30c7db87895f56d0158e5411206b721ca903cb51bfd948/WebTest-1.4.3.zip";
78 url = "https://pypi.python.org/packages/51/3d/84fd0f628df10b30c7db87895f56d0158e5411206b721ca903cb51bfd948/WebTest-1.4.3.zip";
79 md5 = "631ce728bed92c681a4020a36adbc353";
79 md5 = "631ce728bed92c681a4020a36adbc353";
80 };
80 };
81 };
81 };
82 configobj = super.buildPythonPackage {
82 configobj = super.buildPythonPackage {
83 name = "configobj-5.0.6";
83 name = "configobj-5.0.6";
84 buildInputs = with self; [];
84 buildInputs = with self; [];
85 doCheck = false;
85 doCheck = false;
86 propagatedBuildInputs = with self; [six];
86 propagatedBuildInputs = with self; [six];
87 src = fetchurl {
87 src = fetchurl {
88 url = "https://pypi.python.org/packages/64/61/079eb60459c44929e684fa7d9e2fdca403f67d64dd9dbac27296be2e0fab/configobj-5.0.6.tar.gz";
88 url = "https://pypi.python.org/packages/64/61/079eb60459c44929e684fa7d9e2fdca403f67d64dd9dbac27296be2e0fab/configobj-5.0.6.tar.gz";
89 md5 = "e472a3a1c2a67bb0ec9b5d54c13a47d6";
89 md5 = "e472a3a1c2a67bb0ec9b5d54c13a47d6";
90 };
90 };
91 };
91 };
92 dulwich = super.buildPythonPackage {
92 dulwich = super.buildPythonPackage {
93 name = "dulwich-0.12.0";
93 name = "dulwich-0.12.0";
94 buildInputs = with self; [];
94 buildInputs = with self; [];
95 doCheck = false;
95 doCheck = false;
96 propagatedBuildInputs = with self; [];
96 propagatedBuildInputs = with self; [];
97 src = fetchurl {
97 src = fetchurl {
98 url = "https://pypi.python.org/packages/6f/04/fbe561b6d45c0ec758330d5b7f5ba4b6cb4f1ca1ab49859d2fc16320da75/dulwich-0.12.0.tar.gz";
98 url = "https://pypi.python.org/packages/6f/04/fbe561b6d45c0ec758330d5b7f5ba4b6cb4f1ca1ab49859d2fc16320da75/dulwich-0.12.0.tar.gz";
99 md5 = "f3a8a12bd9f9dd8c233e18f3d49436fa";
99 md5 = "f3a8a12bd9f9dd8c233e18f3d49436fa";
100 };
100 };
101 };
101 };
102 greenlet = super.buildPythonPackage {
102 greenlet = super.buildPythonPackage {
103 name = "greenlet-0.4.7";
103 name = "greenlet-0.4.7";
104 buildInputs = with self; [];
104 buildInputs = with self; [];
105 doCheck = false;
105 doCheck = false;
106 propagatedBuildInputs = with self; [];
106 propagatedBuildInputs = with self; [];
107 src = fetchurl {
107 src = fetchurl {
108 url = "https://pypi.python.org/packages/7a/9f/a1a0d9bdf3203ae1502c5a8434fe89d323599d78a106985bc327351a69d4/greenlet-0.4.7.zip";
108 url = "https://pypi.python.org/packages/7a/9f/a1a0d9bdf3203ae1502c5a8434fe89d323599d78a106985bc327351a69d4/greenlet-0.4.7.zip";
109 md5 = "c2333a8ff30fa75c5d5ec0e67b461086";
109 md5 = "c2333a8ff30fa75c5d5ec0e67b461086";
110 };
110 };
111 };
111 };
112 gunicorn = super.buildPythonPackage {
112 gunicorn = super.buildPythonPackage {
113 name = "gunicorn-19.6.0";
113 name = "gunicorn-19.6.0";
114 buildInputs = with self; [];
114 buildInputs = with self; [];
115 doCheck = false;
115 doCheck = false;
116 propagatedBuildInputs = with self; [];
116 propagatedBuildInputs = with self; [];
117 src = fetchurl {
117 src = fetchurl {
118 url = "https://pypi.python.org/packages/84/ce/7ea5396efad1cef682bbc4068e72a0276341d9d9d0f501da609fab9fcb80/gunicorn-19.6.0.tar.gz";
118 url = "https://pypi.python.org/packages/84/ce/7ea5396efad1cef682bbc4068e72a0276341d9d9d0f501da609fab9fcb80/gunicorn-19.6.0.tar.gz";
119 md5 = "338e5e8a83ea0f0625f768dba4597530";
119 md5 = "338e5e8a83ea0f0625f768dba4597530";
120 };
120 };
121 };
121 };
122 hgsubversion = super.buildPythonPackage {
122 hgsubversion = super.buildPythonPackage {
123 name = "hgsubversion-1.8.5";
123 name = "hgsubversion-1.8.6";
124 buildInputs = with self; [];
124 buildInputs = with self; [];
125 doCheck = false;
125 doCheck = false;
126 propagatedBuildInputs = with self; [mercurial subvertpy];
126 propagatedBuildInputs = with self; [mercurial subvertpy];
127 src = fetchurl {
127 src = fetchurl {
128 url = "https://pypi.python.org/packages/f7/8d/3e5719405d4b0b57db7faaf472fb836ed4c437a82bd124a2a37707c33bff/hgsubversion-1.8.5.tar.gz";
128 url = "https://pypi.python.org/packages/ce/97/032e5093ad250e9908cea04395cbddb6902d587f712a79b53b2d778bdfdd/hgsubversion-1.8.6.tar.gz";
129 md5 = "afc3f096fb4dacf1d9210811f81313e0";
129 md5 = "9310cb266031cf8d0779885782a84a5b";
130 };
130 };
131 };
131 };
132 infrae.cache = super.buildPythonPackage {
132 infrae.cache = super.buildPythonPackage {
133 name = "infrae.cache-1.0.1";
133 name = "infrae.cache-1.0.1";
134 buildInputs = with self; [];
134 buildInputs = with self; [];
135 doCheck = false;
135 doCheck = false;
136 propagatedBuildInputs = with self; [Beaker repoze.lru];
136 propagatedBuildInputs = with self; [Beaker repoze.lru];
137 src = fetchurl {
137 src = fetchurl {
138 url = "https://pypi.python.org/packages/bb/f0/e7d5e984cf6592fd2807dc7bc44a93f9d18e04e6a61f87fdfb2622422d74/infrae.cache-1.0.1.tar.gz";
138 url = "https://pypi.python.org/packages/bb/f0/e7d5e984cf6592fd2807dc7bc44a93f9d18e04e6a61f87fdfb2622422d74/infrae.cache-1.0.1.tar.gz";
139 md5 = "b09076a766747e6ed2a755cc62088e32";
139 md5 = "b09076a766747e6ed2a755cc62088e32";
140 };
140 };
141 };
141 };
142 mercurial = super.buildPythonPackage {
142 mercurial = super.buildPythonPackage {
143 name = "mercurial-3.7.3";
143 name = "mercurial-3.8.3";
144 buildInputs = with self; [];
144 buildInputs = with self; [];
145 doCheck = false;
145 doCheck = false;
146 propagatedBuildInputs = with self; [];
146 propagatedBuildInputs = with self; [];
147 src = fetchurl {
147 src = fetchurl {
148 url = "https://pypi.python.org/packages/e8/a0/fe6bf60a314a30299c58a5ed67de9fffeae04731201f10dc2822befb062d/mercurial-3.7.3.tar.gz";
148 url = "https://pypi.python.org/packages/56/bc/af1561195d43638d44bc3ac286c21f187430966234bee1f235711d80dfb6/mercurial-3.8.3.tar.gz";
149 md5 = "f47c9c76b7bf429dafecb71fa81c01b4";
149 md5 = "97aced7018614eeccc9621a3dea35fda";
150 };
150 };
151 };
151 };
152 mock = super.buildPythonPackage {
152 mock = super.buildPythonPackage {
153 name = "mock-1.0.1";
153 name = "mock-1.0.1";
154 buildInputs = with self; [];
154 buildInputs = with self; [];
155 doCheck = false;
155 doCheck = false;
156 propagatedBuildInputs = with self; [];
156 propagatedBuildInputs = with self; [];
157 src = fetchurl {
157 src = fetchurl {
158 url = "https://pypi.python.org/packages/15/45/30273ee91feb60dabb8fbb2da7868520525f02cf910279b3047182feed80/mock-1.0.1.zip";
158 url = "https://pypi.python.org/packages/15/45/30273ee91feb60dabb8fbb2da7868520525f02cf910279b3047182feed80/mock-1.0.1.zip";
159 md5 = "869f08d003c289a97c1a6610faf5e913";
159 md5 = "869f08d003c289a97c1a6610faf5e913";
160 };
160 };
161 };
161 };
162 msgpack-python = super.buildPythonPackage {
162 msgpack-python = super.buildPythonPackage {
163 name = "msgpack-python-0.4.6";
163 name = "msgpack-python-0.4.6";
164 buildInputs = with self; [];
164 buildInputs = with self; [];
165 doCheck = false;
165 doCheck = false;
166 propagatedBuildInputs = with self; [];
166 propagatedBuildInputs = with self; [];
167 src = fetchurl {
167 src = fetchurl {
168 url = "https://pypi.python.org/packages/15/ce/ff2840885789ef8035f66cd506ea05bdb228340307d5e71a7b1e3f82224c/msgpack-python-0.4.6.tar.gz";
168 url = "https://pypi.python.org/packages/15/ce/ff2840885789ef8035f66cd506ea05bdb228340307d5e71a7b1e3f82224c/msgpack-python-0.4.6.tar.gz";
169 md5 = "8b317669314cf1bc881716cccdaccb30";
169 md5 = "8b317669314cf1bc881716cccdaccb30";
170 };
170 };
171 };
171 };
172 py = super.buildPythonPackage {
172 py = super.buildPythonPackage {
173 name = "py-1.4.29";
173 name = "py-1.4.29";
174 buildInputs = with self; [];
174 buildInputs = with self; [];
175 doCheck = false;
175 doCheck = false;
176 propagatedBuildInputs = with self; [];
176 propagatedBuildInputs = with self; [];
177 src = fetchurl {
177 src = fetchurl {
178 url = "https://pypi.python.org/packages/2a/bc/a1a4a332ac10069b8e5e25136a35e08a03f01fd6ab03d819889d79a1fd65/py-1.4.29.tar.gz";
178 url = "https://pypi.python.org/packages/2a/bc/a1a4a332ac10069b8e5e25136a35e08a03f01fd6ab03d819889d79a1fd65/py-1.4.29.tar.gz";
179 md5 = "c28e0accba523a29b35a48bb703fb96c";
179 md5 = "c28e0accba523a29b35a48bb703fb96c";
180 };
180 };
181 };
181 };
182 pyramid = super.buildPythonPackage {
182 pyramid = super.buildPythonPackage {
183 name = "pyramid-1.6.1";
183 name = "pyramid-1.6.1";
184 buildInputs = with self; [];
184 buildInputs = with self; [];
185 doCheck = false;
185 doCheck = false;
186 propagatedBuildInputs = with self; [setuptools WebOb repoze.lru zope.interface zope.deprecation venusian translationstring PasteDeploy];
186 propagatedBuildInputs = with self; [setuptools WebOb repoze.lru zope.interface zope.deprecation venusian translationstring PasteDeploy];
187 src = fetchurl {
187 src = fetchurl {
188 url = "https://pypi.python.org/packages/30/b3/fcc4a2a4800cbf21989e00454b5828cf1f7fe35c63e0810b350e56d4c475/pyramid-1.6.1.tar.gz";
188 url = "https://pypi.python.org/packages/30/b3/fcc4a2a4800cbf21989e00454b5828cf1f7fe35c63e0810b350e56d4c475/pyramid-1.6.1.tar.gz";
189 md5 = "b18688ff3cc33efdbb098a35b45dd122";
189 md5 = "b18688ff3cc33efdbb098a35b45dd122";
190 };
190 };
191 };
191 };
192 pyramid-jinja2 = super.buildPythonPackage {
192 pyramid-jinja2 = super.buildPythonPackage {
193 name = "pyramid-jinja2-2.5";
193 name = "pyramid-jinja2-2.5";
194 buildInputs = with self; [];
194 buildInputs = with self; [];
195 doCheck = false;
195 doCheck = false;
196 propagatedBuildInputs = with self; [pyramid zope.deprecation Jinja2 MarkupSafe];
196 propagatedBuildInputs = with self; [pyramid zope.deprecation Jinja2 MarkupSafe];
197 src = fetchurl {
197 src = fetchurl {
198 url = "https://pypi.python.org/packages/a1/80/595e26ffab7deba7208676b6936b7e5a721875710f982e59899013cae1ed/pyramid_jinja2-2.5.tar.gz";
198 url = "https://pypi.python.org/packages/a1/80/595e26ffab7deba7208676b6936b7e5a721875710f982e59899013cae1ed/pyramid_jinja2-2.5.tar.gz";
199 md5 = "07cb6547204ac5e6f0b22a954ccee928";
199 md5 = "07cb6547204ac5e6f0b22a954ccee928";
200 };
200 };
201 };
201 };
202 pyramid-mako = super.buildPythonPackage {
202 pyramid-mako = super.buildPythonPackage {
203 name = "pyramid-mako-1.0.2";
203 name = "pyramid-mako-1.0.2";
204 buildInputs = with self; [];
204 buildInputs = with self; [];
205 doCheck = false;
205 doCheck = false;
206 propagatedBuildInputs = with self; [pyramid Mako];
206 propagatedBuildInputs = with self; [pyramid Mako];
207 src = fetchurl {
207 src = fetchurl {
208 url = "https://pypi.python.org/packages/f1/92/7e69bcf09676d286a71cb3bbb887b16595b96f9ba7adbdc239ffdd4b1eb9/pyramid_mako-1.0.2.tar.gz";
208 url = "https://pypi.python.org/packages/f1/92/7e69bcf09676d286a71cb3bbb887b16595b96f9ba7adbdc239ffdd4b1eb9/pyramid_mako-1.0.2.tar.gz";
209 md5 = "ee25343a97eb76bd90abdc2a774eb48a";
209 md5 = "ee25343a97eb76bd90abdc2a774eb48a";
210 };
210 };
211 };
211 };
212 pytest = super.buildPythonPackage {
212 pytest = super.buildPythonPackage {
213 name = "pytest-2.8.5";
213 name = "pytest-2.8.5";
214 buildInputs = with self; [];
214 buildInputs = with self; [];
215 doCheck = false;
215 doCheck = false;
216 propagatedBuildInputs = with self; [py];
216 propagatedBuildInputs = with self; [py];
217 src = fetchurl {
217 src = fetchurl {
218 url = "https://pypi.python.org/packages/b1/3d/d7ea9b0c51e0cacded856e49859f0a13452747491e842c236bbab3714afe/pytest-2.8.5.zip";
218 url = "https://pypi.python.org/packages/b1/3d/d7ea9b0c51e0cacded856e49859f0a13452747491e842c236bbab3714afe/pytest-2.8.5.zip";
219 md5 = "8493b06f700862f1294298d6c1b715a9";
219 md5 = "8493b06f700862f1294298d6c1b715a9";
220 };
220 };
221 };
221 };
222 repoze.lru = super.buildPythonPackage {
222 repoze.lru = super.buildPythonPackage {
223 name = "repoze.lru-0.6";
223 name = "repoze.lru-0.6";
224 buildInputs = with self; [];
224 buildInputs = with self; [];
225 doCheck = false;
225 doCheck = false;
226 propagatedBuildInputs = with self; [];
226 propagatedBuildInputs = with self; [];
227 src = fetchurl {
227 src = fetchurl {
228 url = "https://pypi.python.org/packages/6e/1e/aa15cc90217e086dc8769872c8778b409812ff036bf021b15795638939e4/repoze.lru-0.6.tar.gz";
228 url = "https://pypi.python.org/packages/6e/1e/aa15cc90217e086dc8769872c8778b409812ff036bf021b15795638939e4/repoze.lru-0.6.tar.gz";
229 md5 = "2c3b64b17a8e18b405f55d46173e14dd";
229 md5 = "2c3b64b17a8e18b405f55d46173e14dd";
230 };
230 };
231 };
231 };
232 rhodecode-vcsserver = super.buildPythonPackage {
232 rhodecode-vcsserver = super.buildPythonPackage {
233 name = "rhodecode-vcsserver-4.0.0";
233 name = "rhodecode-vcsserver-4.1.0";
234 buildInputs = with self; [mock pytest WebTest];
234 buildInputs = with self; [mock pytest WebTest];
235 doCheck = true;
235 doCheck = true;
236 propagatedBuildInputs = with self; [configobj dulwich hgsubversion infrae.cache mercurial msgpack-python pyramid Pyro4 simplejson subprocess32 waitress WebOb];
236 propagatedBuildInputs = with self; [configobj dulwich hgsubversion infrae.cache mercurial msgpack-python pyramid Pyro4 simplejson subprocess32 waitress WebOb];
237 src = ./.;
237 src = ./.;
238 };
238 };
239 serpent = super.buildPythonPackage {
239 serpent = super.buildPythonPackage {
240 name = "serpent-1.12";
240 name = "serpent-1.12";
241 buildInputs = with self; [];
241 buildInputs = with self; [];
242 doCheck = false;
242 doCheck = false;
243 propagatedBuildInputs = with self; [];
243 propagatedBuildInputs = with self; [];
244 src = fetchurl {
244 src = fetchurl {
245 url = "https://pypi.python.org/packages/3b/19/1e0e83b47c09edaef8398655088036e7e67386b5c48770218ebb339fbbd5/serpent-1.12.tar.gz";
245 url = "https://pypi.python.org/packages/3b/19/1e0e83b47c09edaef8398655088036e7e67386b5c48770218ebb339fbbd5/serpent-1.12.tar.gz";
246 md5 = "05869ac7b062828b34f8f927f0457b65";
246 md5 = "05869ac7b062828b34f8f927f0457b65";
247 };
247 };
248 };
248 };
249 setuptools = super.buildPythonPackage {
249 setuptools = super.buildPythonPackage {
250 name = "setuptools-20.8.1";
250 name = "setuptools-20.8.1";
251 buildInputs = with self; [];
251 buildInputs = with self; [];
252 doCheck = false;
252 doCheck = false;
253 propagatedBuildInputs = with self; [];
253 propagatedBuildInputs = with self; [];
254 src = fetchurl {
254 src = fetchurl {
255 url = "https://pypi.python.org/packages/c4/19/c1bdc88b53da654df43770f941079dbab4e4788c2dcb5658fb86259894c7/setuptools-20.8.1.zip";
255 url = "https://pypi.python.org/packages/c4/19/c1bdc88b53da654df43770f941079dbab4e4788c2dcb5658fb86259894c7/setuptools-20.8.1.zip";
256 md5 = "fe58a5cac0df20bb83942b252a4b0543";
256 md5 = "fe58a5cac0df20bb83942b252a4b0543";
257 };
257 };
258 };
258 };
259 simplejson = super.buildPythonPackage {
259 simplejson = super.buildPythonPackage {
260 name = "simplejson-3.7.2";
260 name = "simplejson-3.7.2";
261 buildInputs = with self; [];
261 buildInputs = with self; [];
262 doCheck = false;
262 doCheck = false;
263 propagatedBuildInputs = with self; [];
263 propagatedBuildInputs = with self; [];
264 src = fetchurl {
264 src = fetchurl {
265 url = "https://pypi.python.org/packages/6d/89/7f13f099344eea9d6722779a1f165087cb559598107844b1ac5dbd831fb1/simplejson-3.7.2.tar.gz";
265 url = "https://pypi.python.org/packages/6d/89/7f13f099344eea9d6722779a1f165087cb559598107844b1ac5dbd831fb1/simplejson-3.7.2.tar.gz";
266 md5 = "a5fc7d05d4cb38492285553def5d4b46";
266 md5 = "a5fc7d05d4cb38492285553def5d4b46";
267 };
267 };
268 };
268 };
269 six = super.buildPythonPackage {
269 six = super.buildPythonPackage {
270 name = "six-1.9.0";
270 name = "six-1.9.0";
271 buildInputs = with self; [];
271 buildInputs = with self; [];
272 doCheck = false;
272 doCheck = false;
273 propagatedBuildInputs = with self; [];
273 propagatedBuildInputs = with self; [];
274 src = fetchurl {
274 src = fetchurl {
275 url = "https://pypi.python.org/packages/16/64/1dc5e5976b17466fd7d712e59cbe9fb1e18bec153109e5ba3ed6c9102f1a/six-1.9.0.tar.gz";
275 url = "https://pypi.python.org/packages/16/64/1dc5e5976b17466fd7d712e59cbe9fb1e18bec153109e5ba3ed6c9102f1a/six-1.9.0.tar.gz";
276 md5 = "476881ef4012262dfc8adc645ee786c4";
276 md5 = "476881ef4012262dfc8adc645ee786c4";
277 };
277 };
278 };
278 };
279 subprocess32 = super.buildPythonPackage {
279 subprocess32 = super.buildPythonPackage {
280 name = "subprocess32-3.2.6";
280 name = "subprocess32-3.2.6";
281 buildInputs = with self; [];
281 buildInputs = with self; [];
282 doCheck = false;
282 doCheck = false;
283 propagatedBuildInputs = with self; [];
283 propagatedBuildInputs = with self; [];
284 src = fetchurl {
284 src = fetchurl {
285 url = "https://pypi.python.org/packages/28/8d/33ccbff51053f59ae6c357310cac0e79246bbed1d345ecc6188b176d72c3/subprocess32-3.2.6.tar.gz";
285 url = "https://pypi.python.org/packages/28/8d/33ccbff51053f59ae6c357310cac0e79246bbed1d345ecc6188b176d72c3/subprocess32-3.2.6.tar.gz";
286 md5 = "754c5ab9f533e764f931136974b618f1";
286 md5 = "754c5ab9f533e764f931136974b618f1";
287 };
287 };
288 };
288 };
289 subvertpy = super.buildPythonPackage {
289 subvertpy = super.buildPythonPackage {
290 name = "subvertpy-0.9.3";
290 name = "subvertpy-0.9.3";
291 buildInputs = with self; [];
291 buildInputs = with self; [];
292 doCheck = false;
292 doCheck = false;
293 propagatedBuildInputs = with self; [];
293 propagatedBuildInputs = with self; [];
294 src = fetchurl {
294 src = fetchurl {
295 url = "https://github.com/jelmer/subvertpy/archive/subvertpy-0.9.3.tar.gz";
295 url = "https://github.com/jelmer/subvertpy/archive/subvertpy-0.9.3.tar.gz";
296 md5 = "7b745a47128050ea5a73efcd913ec1cf";
296 md5 = "7b745a47128050ea5a73efcd913ec1cf";
297 };
297 };
298 };
298 };
299 translationstring = super.buildPythonPackage {
299 translationstring = super.buildPythonPackage {
300 name = "translationstring-1.3";
300 name = "translationstring-1.3";
301 buildInputs = with self; [];
301 buildInputs = with self; [];
302 doCheck = false;
302 doCheck = false;
303 propagatedBuildInputs = with self; [];
303 propagatedBuildInputs = with self; [];
304 src = fetchurl {
304 src = fetchurl {
305 url = "https://pypi.python.org/packages/5e/eb/bee578cc150b44c653b63f5ebe258b5d0d812ddac12497e5f80fcad5d0b4/translationstring-1.3.tar.gz";
305 url = "https://pypi.python.org/packages/5e/eb/bee578cc150b44c653b63f5ebe258b5d0d812ddac12497e5f80fcad5d0b4/translationstring-1.3.tar.gz";
306 md5 = "a4b62e0f3c189c783a1685b3027f7c90";
306 md5 = "a4b62e0f3c189c783a1685b3027f7c90";
307 };
307 };
308 };
308 };
309 venusian = super.buildPythonPackage {
309 venusian = super.buildPythonPackage {
310 name = "venusian-1.0";
310 name = "venusian-1.0";
311 buildInputs = with self; [];
311 buildInputs = with self; [];
312 doCheck = false;
312 doCheck = false;
313 propagatedBuildInputs = with self; [];
313 propagatedBuildInputs = with self; [];
314 src = fetchurl {
314 src = fetchurl {
315 url = "https://pypi.python.org/packages/86/20/1948e0dfc4930ddde3da8c33612f6a5717c0b4bc28f591a5c5cf014dd390/venusian-1.0.tar.gz";
315 url = "https://pypi.python.org/packages/86/20/1948e0dfc4930ddde3da8c33612f6a5717c0b4bc28f591a5c5cf014dd390/venusian-1.0.tar.gz";
316 md5 = "dccf2eafb7113759d60c86faf5538756";
316 md5 = "dccf2eafb7113759d60c86faf5538756";
317 };
317 };
318 };
318 };
319 waitress = super.buildPythonPackage {
319 waitress = super.buildPythonPackage {
320 name = "waitress-0.8.9";
320 name = "waitress-0.8.9";
321 buildInputs = with self; [];
321 buildInputs = with self; [];
322 doCheck = false;
322 doCheck = false;
323 propagatedBuildInputs = with self; [setuptools];
323 propagatedBuildInputs = with self; [setuptools];
324 src = fetchurl {
324 src = fetchurl {
325 url = "https://pypi.python.org/packages/ee/65/fc9dee74a909a1187ca51e4f15ad9c4d35476e4ab5813f73421505c48053/waitress-0.8.9.tar.gz";
325 url = "https://pypi.python.org/packages/ee/65/fc9dee74a909a1187ca51e4f15ad9c4d35476e4ab5813f73421505c48053/waitress-0.8.9.tar.gz";
326 md5 = "da3f2e62b3676be5dd630703a68e2a04";
326 md5 = "da3f2e62b3676be5dd630703a68e2a04";
327 };
327 };
328 };
328 };
329 wheel = super.buildPythonPackage {
329 wheel = super.buildPythonPackage {
330 name = "wheel-0.29.0";
330 name = "wheel-0.29.0";
331 buildInputs = with self; [];
331 buildInputs = with self; [];
332 doCheck = false;
332 doCheck = false;
333 propagatedBuildInputs = with self; [];
333 propagatedBuildInputs = with self; [];
334 src = fetchurl {
334 src = fetchurl {
335 url = "https://pypi.python.org/packages/c9/1d/bd19e691fd4cfe908c76c429fe6e4436c9e83583c4414b54f6c85471954a/wheel-0.29.0.tar.gz";
335 url = "https://pypi.python.org/packages/c9/1d/bd19e691fd4cfe908c76c429fe6e4436c9e83583c4414b54f6c85471954a/wheel-0.29.0.tar.gz";
336 md5 = "555a67e4507cedee23a0deb9651e452f";
336 md5 = "555a67e4507cedee23a0deb9651e452f";
337 };
337 };
338 };
338 };
339 zope.deprecation = super.buildPythonPackage {
339 zope.deprecation = super.buildPythonPackage {
340 name = "zope.deprecation-4.1.1";
340 name = "zope.deprecation-4.1.1";
341 buildInputs = with self; [];
341 buildInputs = with self; [];
342 doCheck = false;
342 doCheck = false;
343 propagatedBuildInputs = with self; [setuptools];
343 propagatedBuildInputs = with self; [setuptools];
344 src = fetchurl {
344 src = fetchurl {
345 url = "https://pypi.python.org/packages/c5/c9/e760f131fcde817da6c186a3f4952b8f206b7eeb269bb6f0836c715c5f20/zope.deprecation-4.1.1.tar.gz";
345 url = "https://pypi.python.org/packages/c5/c9/e760f131fcde817da6c186a3f4952b8f206b7eeb269bb6f0836c715c5f20/zope.deprecation-4.1.1.tar.gz";
346 md5 = "ce261b9384066f7e13b63525778430cb";
346 md5 = "ce261b9384066f7e13b63525778430cb";
347 };
347 };
348 };
348 };
349 zope.interface = super.buildPythonPackage {
349 zope.interface = super.buildPythonPackage {
350 name = "zope.interface-4.1.3";
350 name = "zope.interface-4.1.3";
351 buildInputs = with self; [];
351 buildInputs = with self; [];
352 doCheck = false;
352 doCheck = false;
353 propagatedBuildInputs = with self; [setuptools];
353 propagatedBuildInputs = with self; [setuptools];
354 src = fetchurl {
354 src = fetchurl {
355 url = "https://pypi.python.org/packages/9d/81/2509ca3c6f59080123c1a8a97125eb48414022618cec0e64eb1313727bfe/zope.interface-4.1.3.tar.gz";
355 url = "https://pypi.python.org/packages/9d/81/2509ca3c6f59080123c1a8a97125eb48414022618cec0e64eb1313727bfe/zope.interface-4.1.3.tar.gz";
356 md5 = "9ae3d24c0c7415deb249dd1a132f0f79";
356 md5 = "9ae3d24c0c7415deb249dd1a132f0f79";
357 };
357 };
358 };
358 };
359
359
360 ### Test requirements
360 ### Test requirements
361
361
362
362
363 }
363 }
@@ -1,34 +1,34 b''
1 Beaker==1.7.0
1 Beaker==1.7.0
2 configobj==5.0.6
2 configobj==5.0.6
3 dulwich==0.12.0
3 dulwich==0.12.0
4 hgsubversion==1.8.5
4 hgsubversion==1.8.6
5 infrae.cache==1.0.1
5 infrae.cache==1.0.1
6 mercurial==3.7.3
6 mercurial==3.8.3
7 msgpack-python==0.4.6
7 msgpack-python==0.4.6
8 py==1.4.29
8 py==1.4.29
9 pyramid==1.6.1
9 pyramid==1.6.1
10 pyramid-jinja2==2.5
10 pyramid-jinja2==2.5
11 pyramid-mako==1.0.2
11 pyramid-mako==1.0.2
12 Pyro4==4.41
12 Pyro4==4.41
13 pytest==2.8.5
13 pytest==2.8.5
14 repoze.lru==0.6
14 repoze.lru==0.6
15 serpent==1.12
15 serpent==1.12
16 setuptools==20.8.1
16 setuptools==20.8.1
17 simplejson==3.7.2
17 simplejson==3.7.2
18 subprocess32==3.2.6
18 subprocess32==3.2.6
19 # TODO: johbo: This version is not in source on PyPI currently,
19 # TODO: johbo: This version is not in source on PyPI currently,
20 # change back once this or a future version is available
20 # change back once this or a future version is available
21 https://github.com/jelmer/subvertpy/archive/subvertpy-0.9.3.tar.gz#md5=7b745a47128050ea5a73efcd913ec1cf
21 https://github.com/jelmer/subvertpy/archive/subvertpy-0.9.3.tar.gz#md5=7b745a47128050ea5a73efcd913ec1cf
22 six==1.9.0
22 six==1.9.0
23 translationstring==1.3
23 translationstring==1.3
24 waitress==0.8.9
24 waitress==0.8.9
25 WebOb==1.3.1
25 WebOb==1.3.1
26 wheel==0.29.0
26 wheel==0.29.0
27 zope.deprecation==4.1.1
27 zope.deprecation==4.1.1
28 zope.interface==4.1.3
28 zope.interface==4.1.3
29 greenlet==0.4.7
29 greenlet==0.4.7
30 gunicorn==19.6.0
30 gunicorn==19.6.0
31
31
32 # Test related requirements
32 # Test related requirements
33 mock==1.0.1
33 mock==1.0.1
34 WebTest==1.4.3
34 WebTest==1.4.3
@@ -1,1 +1,1 b''
1 4.0.1 No newline at end of file
1 4.1.0 No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now