Skip to content

Commit

Permalink
matrix-synapse: 1.7.1 -> 1.7.2
Browse files Browse the repository at this point in the history
https://github.com/matrix-org/synapse/releases/tag/1.7.2

Building for now with Python 3.7 as Python 3.8.1 changed it's behavior
regarding URL parsing[1] which broke one of its dependencies[2].

[1] https://bugs.python.org/issue27657
[2] https://hydra.nixos.org/build/108652790 / mozilla/bleach#503
  • Loading branch information
Ma27 committed Dec 20, 2019
1 parent 69a40ed commit 880e098
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pkgs/servers/matrix-synapse/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ let

in buildPythonApplication rec {
pname = "matrix-synapse";
version = "1.7.1";
version = "1.7.2";

src = fetchPypi {
inherit pname version;
sha256 = "1aix4n4nk90xh6y3w3gvq3wzvykzz7mhj9isl437nid7mf9mcj6n";
sha256 = "1nhzjmxzv5bvihl58cdpjw3hdghbh2pz7sg437k841mjn1qqq5lx";
};

patches = [
Expand Down
4 changes: 3 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4477,7 +4477,9 @@ in

makebootfat = callPackage ../tools/misc/makebootfat { };

matrix-synapse = callPackage ../servers/matrix-synapse { python3 = python38; };
/* Python 3.8 is currently broken with matrix-synapse since `python38Packages.bleach` fails
(https://github.com/NixOS/nixpkgs/issues/76093) */
matrix-synapse = callPackage ../servers/matrix-synapse { /*python3 = python38;*/ };

matrix-appservice-slack = callPackage ../servers/matrix-synapse/matrix-appservice-slack {};

Expand Down

0 comments on commit 880e098

Please sign in to comment.