nixpkgs/pkgs/development/python-modules/pyzmq/default.nix
2022-06-06 11:46:11 -07:00

69 lines
1.2 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, py
, pytestCheckHook
, python
, pythonOlder
, tornado
, zeromq
}:
buildPythonPackage rec {
pname = "pyzmq";
version = "23.0.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-pF9cBHfRLfBe8uKSK0m3wK6dD0/5trsNZmVY3w7zcSI=";
};
buildInputs = [
zeromq
];
propagatedBuildInputs = [
py
];
checkInputs = [
pytestCheckHook
tornado
];
pythonImportsCheck = [
"zmq"
];
pytestFlagsArray = [
"$out/${python.sitePackages}/zmq/tests/" # Folder with tests
];
disabledTests = [
# Tests hang
"test_socket"
"test_monitor"
# https://github.com/zeromq/pyzmq/issues/1272
"test_cython"
# Test fails
"test_mockable"
# Issues with the sandbox
"TestFutureSocket"
"TestIOLoop"
"TestPubLog"
];
# Some of the tests use localhost networking.
__darwinAllowLocalNetworking = true;
meta = with lib; {
description = "Python bindings for ØMQ";
homepage = "https://pyzmq.readthedocs.io/";
license = with licenses; [ bsd3 /* or */ lgpl3Only ];
maintainers = with maintainers; [ ];
};
}