2019-12-10 18:06:27 +00:00
|
|
|
self: super: {
|
|
|
|
python27 = super.python27.override {
|
|
|
|
packageOverrides = python-self: python-super: {
|
2019-12-18 14:04:47 +00:00
|
|
|
# eliot is not part of nixpkgs at all at this time.
|
2019-12-10 18:06:27 +00:00
|
|
|
eliot = python-self.callPackage ./eliot.nix { };
|
2019-12-18 14:04:47 +00:00
|
|
|
# The packaged version of Nevow is very slightly out of date but also
|
|
|
|
# conflicts with the packaged version of Twisted. Supply our own
|
|
|
|
# slightly newer version.
|
2019-12-10 20:32:12 +00:00
|
|
|
nevow = python-super.callPackage ./nevow.nix { };
|
2020-04-24 18:29:59 +00:00
|
|
|
# NixOS autobahn package has trollius as a dependency, although
|
|
|
|
# it is optional. Trollius is no longer maintained and fails on
|
|
|
|
# CI.
|
|
|
|
autobahn = python-super.callPackage ./autobahn.nix { };
|
2019-12-10 18:06:27 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|