home-assistant: pin pyasn1 at 0.4.8

Fixes the brother integration test.
This commit is contained in:
Martin Weinelt 2023-08-03 20:20:49 +02:00
parent cdd239d1dc
commit 55134f4c52
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -162,6 +162,15 @@ let
};
});
pyasn1 = super.pyasn1.overridePythonAttrs (oldAttrs: rec {
version = "0.4.8";
src = fetchPypi {
inherit (oldAttrs) pname;
inherit version;
hash = "sha256-rvd8n7lKOsWI6HhBIIvexGRHHZhxvVBQoofMmkdc0Lo=";
};
});
# Pinned due to API changes >0.3.5.3
pyatag = super.pyatag.overridePythonAttrs (oldAttrs: rec {
version = "0.3.5.3";