From e7c1c78581b79309c726ebfe082f4aade62feb69 Mon Sep 17 00:00:00 2001 From: Sajith Sasidharan Date: Fri, 24 Apr 2020 14:24:01 -0400 Subject: [PATCH] Remove trollius from nixos autobahn derivation --- nix/autobahn.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/autobahn.nix b/nix/autobahn.nix index 7d1e365b2..83148c4f8 100644 --- a/nix/autobahn.nix +++ b/nix/autobahn.nix @@ -1,5 +1,5 @@ { lib, buildPythonPackage, fetchPypi, isPy3k, - six, txaio, twisted, zope_interface, cffi, trollius, futures, + six, txaio, twisted, zope_interface, cffi, futures, mock, pytest, cryptography, pynacl }: buildPythonPackage rec { @@ -12,7 +12,7 @@ buildPythonPackage rec { }; propagatedBuildInputs = [ six txaio twisted zope_interface cffi cryptography pynacl ] ++ - (lib.optionals (!isPy3k) [ trollius futures ]); + (lib.optionals (!isPy3k) [ futures ]); checkInputs = [ mock pytest ]; checkPhase = ''