1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythonPackages.python3pika: disable unit test

The tests adds dependencies to pyev, tornado and twisted (and
twisted is disabled for Python 3).
This commit is contained in:
desiderius 2016-02-16 12:52:23 +01:00
parent d1ceca269e
commit 0f7665ae37

View file

@ -14944,6 +14944,10 @@ in modules // {
python3pika = buildPythonPackage {
name = "python3-pika-0.9.14";
disabled = !isPy3k;
# Unit tests adds dependencies on pyev, tornado and twisted (and twisted is disabled for Python 3)
doCheck = false;
src = pkgs.fetchurl {
url = https://pypi.python.org/packages/source/p/python3-pika/python3-pika-0.9.14.tar.gz;
md5 = "f3a3ee58afe0ae06f1fa553710e1aa28";