mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Merge pull request #122229 from mattmelling/pika-21.05
python3Packages.pika: add gevent to checkInputs
This commit is contained in:
commit
00727de1e0
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, gevent
|
||||
, nose
|
||||
, mock
|
||||
, twisted
|
||||
|
@ -16,7 +17,7 @@ buildPythonPackage rec {
|
|||
sha256 = "f023d6ac581086b124190cb3dc81dd581a149d216fa4540ac34f9be1e3970b89";
|
||||
};
|
||||
|
||||
checkInputs = [ nose mock twisted tornado ];
|
||||
checkInputs = [ nose mock twisted tornado gevent ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Pure-Python implementation of the AMQP 0-9-1 protocol";
|
||||
|
|
Loading…
Reference in a new issue