packages: bumped attrs to 19.1.0

This commit is contained in:
Marcin Kuzminski 2019-09-03 11:57:52 +02:00
parent 633c58187e
commit fa317b89aa
3 changed files with 5 additions and 5 deletions

View file

@ -74,11 +74,11 @@ self: super: {
};
};
"attrs" = super.buildPythonPackage {
name = "attrs-18.2.0";
name = "attrs-19.1.0";
doCheck = false;
src = fetchurl {
url = "https://files.pythonhosted.org/packages/0f/9e/26b1d194aab960063b266170e53c39f73ea0d0d3f5ce23313e0ec8ee9bdf/attrs-18.2.0.tar.gz";
sha256 = "0s9ydh058wmmf5v391pym877x4ahxg45dw6a0w4c7s5wgpigdjqh";
url = "https://files.pythonhosted.org/packages/cc/d9/931a24cc5394f19383fbbe3e1147a0291276afa43a0dc3ed0d6cd9fda813/attrs-19.1.0.tar.gz";
sha256 = "16g33zr5f449lqc5wgvzpknxryfzrfsxcr6kpgxwn7l5fkv71f7h";
};
meta = {
license = [ pkgs.lib.licenses.mit ];

View file

@ -1,7 +1,7 @@
# contains not directly required libraries we want to pin the version.
atomicwrites==1.2.1
attrs==18.2.0
attrs==19.1.0
billiard==3.6.1.0
chameleon==2.24
cffi==1.12.2

View file

@ -14,6 +14,7 @@ function registerRCRoutes() {
// routes registration
pyroutes.register('favicon', '/favicon.ico', []);
pyroutes.register('robots', '/robots.txt', []);
pyroutes.register('auth_home', '/_admin/auth*traverse', []);
pyroutes.register('global_integrations_new', '/_admin/integrations/new', []);
pyroutes.register('global_integrations_home', '/_admin/integrations', []);
pyroutes.register('global_integrations_list', '/_admin/integrations/%(integration)s', ['integration']);
@ -29,7 +30,6 @@ function registerRCRoutes() {
pyroutes.register('repo_integrations_list', '/%(repo_name)s/settings/integrations/%(integration)s', ['repo_name', 'integration']);
pyroutes.register('repo_integrations_create', '/%(repo_name)s/settings/integrations/%(integration)s/new', ['repo_name', 'integration']);
pyroutes.register('repo_integrations_edit', '/%(repo_name)s/settings/integrations/%(integration)s/%(integration_id)s', ['repo_name', 'integration', 'integration_id']);
pyroutes.register('auth_home', '/_admin/auth*traverse', []);
pyroutes.register('ops_ping', '/_admin/ops/ping', []);
pyroutes.register('ops_error_test', '/_admin/ops/error', []);
pyroutes.register('ops_redirect_test', '/_admin/ops/redirect', []);