home-assistant: pin pymodbus at 2.5.3

This commit is contained in:
Martin Weinelt 2023-01-04 02:03:36 +01:00
parent 5790ed9ff5
commit 5a0ee9d54d

View file

@ -117,6 +117,16 @@ let
};
});
pymodbus = super.pymodbus.overridePythonAttrs (oldAttrs: rec {
version = "2.5.3";
src = fetchFromGitHub {
owner = "riptideio";
repo = "pymodbus";
rev= "refs/tags/v${version}";
hash = "sha256-pf1TU/imBqNVYdG4XX8fnma8O8kQHuOHu6DT3E/PUk4=";
};
});
python-slugify = super.python-slugify.overridePythonAttrs (oldAttrs: rec {
pname = "python-slugify";
version = "4.0.1";