Merge pull request #155062 from sumnerevans/heisenbridge-1.10.0

heisenbridge: 1.8.2 -> 1.10.0

authored by Bobby Rong and committed by GitHub ebcd0d86 2efc9721

+6 -22
+6 -22
pkgs/servers/heisenbridge/default.nix
··· 1 { lib, fetchFromGitHub, fetchpatch, python3 }: 2 - 3 - let 4 - python = python3.override { 5 - packageOverrides = self: super: { 6 - mautrix_0_13 = self.mautrix.overridePythonAttrs (oldAttrs: rec { 7 - version = "0.13.3"; 8 - src = oldAttrs.src.override { 9 - inherit (oldAttrs) pname; 10 - inherit version; 11 - sha256 = "1e4a292469f3e200c182aaa5bf693a5c3834b2a0cfb3d29e4c9a1559db7740e3"; 12 - }; 13 - }); 14 - }; 15 - }; 16 - in 17 - 18 - python.pkgs.buildPythonApplication rec { 19 pname = "heisenbridge"; 20 - version = "1.8.2"; 21 22 src = fetchFromGitHub { 23 owner = "hifi"; 24 repo = pname; 25 rev = "v${version}"; 26 - sha256 = "173prcd56rwlxjxlw67arnm12k1l317xi5s6m7jhmp8zbbrj5vwr"; 27 }; 28 29 postPatch = '' 30 echo "${version}" > heisenbridge/version.txt 31 ''; 32 33 - propagatedBuildInputs = with python.pkgs; [ 34 aiohttp 35 irc 36 - mautrix_0_13 37 python-socks 38 pyyaml 39 ]; 40 41 - checkInputs = with python.pkgs; [ 42 pytestCheckHook 43 ]; 44
··· 1 { lib, fetchFromGitHub, fetchpatch, python3 }: 2 + python3.pkgs.buildPythonApplication rec { 3 pname = "heisenbridge"; 4 + version = "1.10.0"; 5 6 src = fetchFromGitHub { 7 owner = "hifi"; 8 repo = pname; 9 rev = "v${version}"; 10 + sha256 = "sha256-rQBmg1CBourj/dDJ7P108gGMRdXWp6nwvHIBiQbJLQ0="; 11 }; 12 13 postPatch = '' 14 echo "${version}" > heisenbridge/version.txt 15 ''; 16 17 + propagatedBuildInputs = with python3.pkgs; [ 18 aiohttp 19 irc 20 + mautrix 21 python-socks 22 pyyaml 23 ]; 24 25 + checkInputs = with python3.pkgs; [ 26 pytestCheckHook 27 ]; 28