dt-schema: remove python override

This commit is contained in:
Sigmanificient
2026-01-18 05:08:25 +01:00
parent 71bdc1e894
commit f93c2cedfe
+2 -23
View File
@@ -1,26 +1,5 @@
{
python3,
python3Packages,
}:
let
python = python3.override {
self = python;
packageOverrides = self: super: {
# see https://github.com/devicetree-org/dt-schema/issues/108
jsonschema = super.jsonschema.overridePythonAttrs (old: rec {
version = "4.17.3";
src = old.src.override {
inherit version;
hash = "sha256-D4ZEN6uLYHa6ZwdFPvj5imoNUSqA6T+KvbZ29zfstg0=";
};
propagatedBuildInputs = with self; [
attrs
pyrsistent
];
});
};
};
in
python.pkgs.toPythonApplication python.pkgs.dtschema
python3Packages.toPythonApplication python3Packages.dtschema