2019-12-10 13:06:27 -05:00
|
|
|
self: super: {
|
|
|
|
python27 = super.python27.override {
|
|
|
|
packageOverrides = python-self: python-super: {
|
2019-12-18 09:04:47 -05:00
|
|
|
# eliot is not part of nixpkgs at all at this time.
|
2019-12-10 13:06:27 -05:00
|
|
|
eliot = python-self.callPackage ./eliot.nix { };
|
2019-12-18 09:04:47 -05: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 15:32:12 -05:00
|
|
|
nevow = python-super.callPackage ./nevow.nix { };
|
2020-04-24 14:29:59 -04:00
|
|
|
# NixOS autobahn package has trollius as a dependency, although
|
2020-04-24 21:16:57 -04:00
|
|
|
# it is optional. Trollius is unmaintained and fails on CI.
|
2020-04-24 14:29:59 -04:00
|
|
|
autobahn = python-super.callPackage ./autobahn.nix { };
|
2019-12-10 13:06:27 -05:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|