Show More
@@ -74,11 +74,11 b' self: super: {' | |||
|
74 | 74 | }; |
|
75 | 75 | }; |
|
76 | 76 | "attrs" = super.buildPythonPackage { |
|
77 |
name = "attrs-1 |
|
|
77 | name = "attrs-19.1.0"; | |
|
78 | 78 | doCheck = false; |
|
79 | 79 | src = fetchurl { |
|
80 |
url = "https://files.pythonhosted.org/packages/ |
|
|
81 | sha256 = "0s9ydh058wmmf5v391pym877x4ahxg45dw6a0w4c7s5wgpigdjqh"; | |
|
80 | url = "https://files.pythonhosted.org/packages/cc/d9/931a24cc5394f19383fbbe3e1147a0291276afa43a0dc3ed0d6cd9fda813/attrs-19.1.0.tar.gz"; | |
|
81 | sha256 = "16g33zr5f449lqc5wgvzpknxryfzrfsxcr6kpgxwn7l5fkv71f7h"; | |
|
82 | 82 | }; |
|
83 | 83 | meta = { |
|
84 | 84 | license = [ pkgs.lib.licenses.mit ]; |
@@ -1,7 +1,7 b'' | |||
|
1 | 1 | # contains not directly required libraries we want to pin the version. |
|
2 | 2 | |
|
3 | 3 | atomicwrites==1.2.1 |
|
4 |
attrs==1 |
|
|
4 | attrs==19.1.0 | |
|
5 | 5 | billiard==3.6.1.0 |
|
6 | 6 | chameleon==2.24 |
|
7 | 7 | cffi==1.12.2 |
@@ -14,6 +14,7 b' function registerRCRoutes() {' | |||
|
14 | 14 | // routes registration |
|
15 | 15 | pyroutes.register('favicon', '/favicon.ico', []); |
|
16 | 16 | pyroutes.register('robots', '/robots.txt', []); |
|
17 | pyroutes.register('auth_home', '/_admin/auth*traverse', []); | |
|
17 | 18 | pyroutes.register('global_integrations_new', '/_admin/integrations/new', []); |
|
18 | 19 | pyroutes.register('global_integrations_home', '/_admin/integrations', []); |
|
19 | 20 | pyroutes.register('global_integrations_list', '/_admin/integrations/%(integration)s', ['integration']); |
@@ -29,7 +30,6 b' function registerRCRoutes() {' | |||
|
29 | 30 | pyroutes.register('repo_integrations_list', '/%(repo_name)s/settings/integrations/%(integration)s', ['repo_name', 'integration']); |
|
30 | 31 | pyroutes.register('repo_integrations_create', '/%(repo_name)s/settings/integrations/%(integration)s/new', ['repo_name', 'integration']); |
|
31 | 32 | pyroutes.register('repo_integrations_edit', '/%(repo_name)s/settings/integrations/%(integration)s/%(integration_id)s', ['repo_name', 'integration', 'integration_id']); |
|
32 | pyroutes.register('auth_home', '/_admin/auth*traverse', []); | |
|
33 | 33 | pyroutes.register('ops_ping', '/_admin/ops/ping', []); |
|
34 | 34 | pyroutes.register('ops_error_test', '/_admin/ops/error', []); |
|
35 | 35 | pyroutes.register('ops_redirect_test', '/_admin/ops/redirect', []); |
General Comments 0
You need to be logged in to leave comments.
Login now