Merge master into staging-next
This commit is contained in:
@@ -495,7 +495,7 @@
|
||||
"meraki" = ps: with ps; [ aiohttp-cors ];
|
||||
"message_bird" = ps: with ps; [ ]; # missing inputs: messagebird
|
||||
"met" = ps: with ps; [ pymetno ];
|
||||
"met_eireann" = ps: with ps; [ ]; # missing inputs: pyMetEireann
|
||||
"met_eireann" = ps: with ps; [ pymeteireann ];
|
||||
"meteo_france" = ps: with ps; [ ]; # missing inputs: meteofrance-api
|
||||
"meteoalarm" = ps: with ps; [ ]; # missing inputs: meteoalertapi
|
||||
"metoffice" = ps: with ps; [ ]; # missing inputs: datapoint
|
||||
@@ -531,7 +531,7 @@
|
||||
"mqtt_statestream" = ps: with ps; [ aiohttp-cors paho-mqtt ];
|
||||
"msteams" = ps: with ps; [ pymsteams ];
|
||||
"mullvad" = ps: with ps; [ mullvad-api ];
|
||||
"mutesync" = ps: with ps; [ ]; # missing inputs: mutesync
|
||||
"mutesync" = ps: with ps; [ mutesync ];
|
||||
"mvglive" = ps: with ps; [ PyMVGLive ];
|
||||
"my" = ps: with ps; [ aiohttp-cors pillow ];
|
||||
"mychevy" = ps: with ps; [ ]; # missing inputs: mychevy
|
||||
|
||||
@@ -38,8 +38,17 @@ let
|
||||
})
|
||||
|
||||
# Pinned due to API changes in pyjwt>=2.0
|
||||
(mkOverride "pyjwt" "1.7.1"
|
||||
"15hflax5qkw1v6nssk1r0wkj83jgghskcmn875m3wgvpzdvajncd")
|
||||
(self: super: {
|
||||
pyjwt = super.pyjwt.overridePythonAttrs (oldAttrs: rec {
|
||||
version = "1.7.1";
|
||||
src = oldAttrs.src.override {
|
||||
sha256 = "15hflax5qkw1v6nssk1r0wkj83jgghskcmn875m3wgvpzdvajncd";
|
||||
};
|
||||
disabledTests = [
|
||||
"test_ec_verify_should_return_false_if_signature_invalid"
|
||||
];
|
||||
});
|
||||
})
|
||||
|
||||
# Pinned due to bug in ring-doorbell 0.7.0
|
||||
# https://github.com/tchellomello/python-ring-doorbell/issues/240
|
||||
@@ -193,6 +202,7 @@ in with py.pkgs; buildPythonApplication rec {
|
||||
"accuweather"
|
||||
"airly"
|
||||
"analytics"
|
||||
"androidtv"
|
||||
"alert"
|
||||
"api"
|
||||
"auth"
|
||||
@@ -296,6 +306,7 @@ in with py.pkgs; buildPythonApplication rec {
|
||||
"media_player"
|
||||
"media_source"
|
||||
"met"
|
||||
"met_eireann"
|
||||
"minecraft_server"
|
||||
"mobile_app"
|
||||
"modbus"
|
||||
@@ -306,6 +317,7 @@ in with py.pkgs; buildPythonApplication rec {
|
||||
"mqtt_room"
|
||||
"mqtt_statestream"
|
||||
"mullvad"
|
||||
"mutesync"
|
||||
"nexia"
|
||||
"notify"
|
||||
"notion"
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "nzbhydra2";
|
||||
version = "3.13.2";
|
||||
version = "3.14.1";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/theotherp/${pname}/releases/download/v${version}/${pname}-${version}-linux.zip";
|
||||
sha512 = "2pi91y966qnq6q9qqnhglmbj4610jxyyqxiwa8zfmb8r48mzwzy3q5ga00h9qbhi6a8ghrfh1yvj4h9m17gk7l3rc5fw0r3mrk437nj";
|
||||
sha512 = "2mfrqqwrfjvr48vm4r0spda3vlg1h511r6hrlv7k9233ps97bjjir6hms82lgqnlirsixayxs47cldjy8amdn3vc6kxsifmbd6a924p";
|
||||
stripRoot = false;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user