nixpkgs/pkgs/development/python-modules/pyzmq/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
912 B
Nix
Raw Normal View History

{ buildPythonPackage
2018-04-05 19:18:15 +00:00
, fetchPypi
2020-11-05 16:07:47 +00:00
, pytestCheckHook
2018-04-05 19:18:15 +00:00
, tornado
2018-10-30 17:08:36 +00:00
, zeromq
2018-04-05 19:18:15 +00:00
, py
, python
}:
buildPythonPackage rec {
pname = "pyzmq";
version = "22.3.0";
2018-04-05 19:18:15 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "8eddc033e716f8c91c6a2112f0a8ebc5e00532b4a6ae1eb0ccc48e027f9c671c";
2018-04-05 19:18:15 +00:00
};
2020-11-05 16:07:47 +00:00
checkInputs = [
pytestCheckHook
tornado
];
2018-10-30 17:08:36 +00:00
buildInputs = [ zeromq ];
2018-04-05 19:18:15 +00:00
propagatedBuildInputs = [ py ];
2020-11-05 16:07:47 +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
];
2019-09-14 19:12:22 +00:00
# Some of the tests use localhost networking.
__darwinAllowLocalNetworking = true;
2018-04-05 19:18:15 +00:00
}