mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
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
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy3k
|
||||
, nose
|
||||
, mock
|
||||
, pyyaml
|
||||
, unittest2
|
||||
, pyev
|
||||
, twisted
|
||||
, tornado
|
||||
}:
|
||||
@ -20,11 +16,7 @@ buildPythonPackage rec {
|
||||
sha256 = "1gqx9avb9nwgiyw5nz08bf99v9b0hvzr1pmqn9wbhd2hnsj6p9wz";
|
||||
};
|
||||
|
||||
# Tests require twisted which is only availalble for python-2.x
|
||||
doCheck = !isPy3k;
|
||||
|
||||
buildInputs = [ nose mock pyyaml unittest2 pyev ]
|
||||
++ stdenv.lib.optionals (!isPy3k) [ twisted tornado ];
|
||||
checkInputs = [ nose mock twisted tornado ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Pure-Python implementation of the AMQP 0-9-1 protocol";
|
||||
|
Loading…
Reference in New Issue
Block a user