pythonPackages.pika: remove pyev dependency

pyev support was removed from upstream https://github.com/pika/pika/pull/934#issuecomment-361714844
This commit is contained in:
Mario Rodas 2019-09-15 12:45:02 -05:00
parent 3ddbe41f79
commit 3028233ea5
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8

View File

@ -1,12 +1,8 @@
{ stdenv { stdenv
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, isPy3k
, nose , nose
, mock , mock
, pyyaml
, unittest2
, pyev
, twisted , twisted
, tornado , tornado
}: }:
@ -20,11 +16,7 @@ buildPythonPackage rec {
sha256 = "1gqx9avb9nwgiyw5nz08bf99v9b0hvzr1pmqn9wbhd2hnsj6p9wz"; sha256 = "1gqx9avb9nwgiyw5nz08bf99v9b0hvzr1pmqn9wbhd2hnsj6p9wz";
}; };
# Tests require twisted which is only availalble for python-2.x checkInputs = [ nose mock twisted tornado ];
doCheck = !isPy3k;
buildInputs = [ nose mock pyyaml unittest2 pyev ]
++ stdenv.lib.optionals (!isPy3k) [ twisted tornado ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Pure-Python implementation of the AMQP 0-9-1 protocol"; description = "Pure-Python implementation of the AMQP 0-9-1 protocol";