tahoe-lafs/nix/overlays.nix

17 lines
683 B
Nix
Raw Normal View History

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.
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 { };
};
};
}