Iwan

Results 20 comments of Iwan

You need to specify all the dependencies of clu: https://github.com/google/CommonLoopUtils/blob/main/setup.py#L46 See 17.27.1.2.2. Handling dependencies in the manual: https://nixos.org/manual/nixpkgs/unstable/ As argument to buildPythonPackage: ``` propagatedBuildInputs = [ pyprev.flax ... ]; ```...

> because `etils` depends on itself and this causes an infinite recursion. Next I get this error: > > ``` > error: builder for '/nix/store/h76j40mzmc0y2bcy50v4lqfigynn32pd-python3.9-ml_collections-0.1.1.drv' failed with exit code 1;...

It looks like there was an issue with the CachedSession, the walk method was delegating to walkmore, which means it could also return too many results. I solved it by...

I looked a bit into it and I think the way it would fit is: - adding agent or at least in memory table support (like #6 but without serving),...

In case somebody would be interested, I found an easier alternative: I use the Net-Snmp smpd server with the snmptrapd receiver as a subagent, and connect to the SNMP server...

OK, I will also have a look at the failures. The big diff in mib.py is moving the functions into a class. I also added method calls to the mibloader...

Any idea about the error with PySNMP 4.2? I cannot reproduce it on my computer and I really don't see where it could come from.

Could the opposite be possible? I.e. refer to `secrets.nix` from the configuration so it's automatically populated? E.g. like an utility function: ``` modules = [ ({ pkgs, ... }: {...

Hi, is there an update on this? Those internal APIs do not seem to exist anymore. I also tried what's propsed in #53 but it seems it needs some internal...

I see `pytestmark = [x, y]` as equivalent to `x(y(module))`, like the marker decorators at the test level, so it would seem more consistent to use the same ordering. It's...