mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-21 05:53:12 +00:00
13 lines
469 B
Nix
13 lines
469 B
Nix
self: super: {
|
|
python27 = super.python27.override {
|
|
packageOverrides = python-self: python-super: {
|
|
# eliot is not part of nixpkgs at all at this time.
|
|
eliot = python-self.callPackage ./eliot.nix { };
|
|
# 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.
|
|
nevow = python-super.callPackage ./nevow.nix { };
|
|
};
|
|
};
|
|
}
|