home-assistant: pin pyrail to version 0.0.3

This commit is contained in:
Robert Schütz
2025-02-06 18:55:49 +01:00
committed by Martin Weinelt
parent 99423f069a
commit 378c44a989
+12
View File
@@ -235,6 +235,18 @@ let
};
});
pyrail = super.pyrail.overridePythonAttrs (rec {
version = "0.0.3";
src = fetchPypi {
pname = "pyrail";
inherit version;
hash = "sha256-XxcVcRXMjYAKevANAqNJkGDUWfxDaLqgCL6XL9Lhsf4=";
};
env.CI_JOB_ID = version;
build-system = [ self.setuptools ];
dependencies = [ self.requests ];
});
# snmp component does not support pysnmp 7.0+
pysnmp = super.pysnmp.overridePythonAttrs (oldAttrs: rec {
version = "6.2.6";