mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-25 23:51:07 +00:00
9 lines
282 B
Nix
9 lines
282 B
Nix
self: super: {
|
|
python27 = super.python27.override {
|
|
packageOverrides = python-self: python-super: {
|
|
eliot = python-self.callPackage ./eliot.nix { };
|
|
nevow = python-super.nevow.overrideAttrs (old: { doCheck = false; }); # callPackage ./nevow.nix { };
|
|
};
|
|
};
|
|
}
|