mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 13:07:56 +00:00
Remove trollius from nixos autobahn derivation
This commit is contained in:
parent
8d8281cd3e
commit
e7c1c78581
@ -1,5 +1,5 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi, isPy3k,
|
{ lib, buildPythonPackage, fetchPypi, isPy3k,
|
||||||
six, txaio, twisted, zope_interface, cffi, trollius, futures,
|
six, txaio, twisted, zope_interface, cffi, futures,
|
||||||
mock, pytest, cryptography, pynacl
|
mock, pytest, cryptography, pynacl
|
||||||
}:
|
}:
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -12,7 +12,7 @@ buildPythonPackage rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ six txaio twisted zope_interface cffi cryptography pynacl ] ++
|
propagatedBuildInputs = [ six txaio twisted zope_interface cffi cryptography pynacl ] ++
|
||||||
(lib.optionals (!isPy3k) [ trollius futures ]);
|
(lib.optionals (!isPy3k) [ futures ]);
|
||||||
|
|
||||||
checkInputs = [ mock pytest ];
|
checkInputs = [ mock pytest ];
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user