Use our own autobahn nixos derivation

This commit is contained in:
Sajith Sasidharan 2020-04-24 14:29:59 -04:00
parent e7c1c78581
commit 756dd25247

View File

@ -7,6 +7,10 @@ self: super: {
# conflicts with the packaged version of Twisted. Supply our own
# slightly newer version.
nevow = python-super.callPackage ./nevow.nix { };
# 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 { };
};
};
}