mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-13 16:29:51 +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 { };
|
||
|
};
|
||
|
};
|
||
|
}
|