buildbot: get rid of python overrides (#350860)

This commit is contained in:
Aleksana 2024-10-24 15:28:18 +08:00 committed by GitHub
commit 8dc62da8e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,15 +5,7 @@
}:
# Take packages from self first, then python.pkgs (and secondarily pkgs)
lib.makeScope (self: newScope (self.python.pkgs // self)) (self: {
python = python3.override {
self = self.python;
packageOverrides = self: super: {
moto = super.moto.overridePythonAttrs (oldAttrs: {
# a lot of tests -> very slow, we already build them when building python packages
doCheck = false;
});
};
};
python = python3;
buildbot-pkg = self.callPackage ./pkg.nix { };