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:
parent
3ddbe41f79
commit
3028233ea5
@ -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";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user