2020-04-24 23:36:52 +00:00
|
|
|
{ buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-11-06 00:33:48 +00:00
|
|
|
, pytestCheckHook
|
2020-04-24 23:36:52 +00:00
|
|
|
, tornado
|
|
|
|
, zeromq
|
|
|
|
, py
|
|
|
|
, python
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyzmq";
|
2021-09-18 10:52:07 +00:00
|
|
|
version = "22.2.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-09-18 10:52:07 +00:00
|
|
|
sha256 = "6d18c76676771fd891ca8e0e68da0bbfb88e30129835c0ade748016adb3b6242";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2020-11-06 00:33:48 +00:00
|
|
|
checkInputs = [
|
|
|
|
pytestCheckHook
|
|
|
|
tornado
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ zeromq ];
|
|
|
|
propagatedBuildInputs = [ py ];
|
|
|
|
|
2020-11-06 00:33:48 +00:00
|
|
|
# failing tests
|
|
|
|
disabledTests = [
|
|
|
|
"test_socket" # hangs
|
|
|
|
"test_current"
|
|
|
|
"test_instance"
|
|
|
|
"test_callable_check"
|
|
|
|
"test_on_recv_basic"
|
|
|
|
"test_on_recv_wake"
|
|
|
|
"test_monitor" # https://github.com/zeromq/pyzmq/issues/1272
|
|
|
|
"test_cython"
|
|
|
|
"test_asyncio" # hangs
|
|
|
|
"test_mockable" # fails
|
|
|
|
];
|
|
|
|
|
|
|
|
pytestFlagsArray = [
|
|
|
|
"$out/${python.sitePackages}/zmq/tests/" # Folder with tests
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# Some of the tests use localhost networking.
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
}
|