Merge pull request #120211 from fabaff/bump-brother

authored by Martin Weinelt and committed by GitHub 9abe4174 eab5c73a

+16 -2
+2 -2
pkgs/development/python-modules/brother/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "brother"; 16 - version = "0.2.2"; 17 disabled = pythonOlder "3.8"; 18 19 src = fetchFromGitHub { 20 owner = "bieniu"; 21 repo = pname; 22 rev = version; 23 - sha256 = "sha256-vIefcL3K3ZbAUxMFM7gbbTFdrnmufWZHcq4OA19SYXE="; 24 }; 25 26 postPatch = ''
··· 13 14 buildPythonPackage rec { 15 pname = "brother"; 16 + version = "1.0.0"; 17 disabled = pythonOlder "3.8"; 18 19 src = fetchFromGitHub { 20 owner = "bieniu"; 21 repo = pname; 22 rev = version; 23 + sha256 = "sha256-0NfqPlQiOkNhR+H55E9LE4dGa9R8vcSyPNbbIeiRJV8="; 24 }; 25 26 postPatch = ''
+14
pkgs/servers/home-assistant/default.nix
··· 27 (mkOverride "astral" "1.10.1" 28 "d2a67243c4503131c856cafb1b1276de52a86e5b8a1d507b7e08bee51cb67bf1") 29 30 # Pinned due to API changes in iaqualink>=2.0, remove after 31 # https://github.com/home-assistant/core/pull/48137 was merged 32 (self: super: { ··· 205 "axis" 206 "bayesian" 207 "binary_sensor" 208 "caldav" 209 "calendar" 210 "camera"
··· 27 (mkOverride "astral" "1.10.1" 28 "d2a67243c4503131c856cafb1b1276de52a86e5b8a1d507b7e08bee51cb67bf1") 29 30 + # Pinned due to API changes in brother>=1.0, remove >= 2021.5 31 + (self: super: { 32 + brother = super.brother.overridePythonAttrs (oldAttrs: rec { 33 + version = "0.2.2"; 34 + src = fetchFromGitHub { 35 + owner = "bieniu"; 36 + repo = "brother"; 37 + rev = version; 38 + sha256 = "sha256-vIefcL3K3ZbAUxMFM7gbbTFdrnmufWZHcq4OA19SYXE="; 39 + }; 40 + }); 41 + }) 42 + 43 # Pinned due to API changes in iaqualink>=2.0, remove after 44 # https://github.com/home-assistant/core/pull/48137 was merged 45 (self: super: { ··· 218 "axis" 219 "bayesian" 220 "binary_sensor" 221 + "brother" 222 "caldav" 223 "calendar" 224 "camera"