nixpkgs/pkgs/development/python-modules/pyzmq/default.nix
2020-06-11 10:00:25 +02:00

40 lines
902 B
Nix

{ buildPythonPackage
, fetchPypi
, pytest
, tornado
, zeromq
, py
, python
}:
buildPythonPackage rec {
pname = "pyzmq";
version = "19.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "13a5638ab24d628a6ade8f794195e1a1acd573496c3b85af2f1183603b7bf5e0";
};
checkInputs = [ pytest tornado ];
buildInputs = [ zeromq ];
propagatedBuildInputs = [ py ];
# test_socket.py seems to be hanging
# others fail
# for test_monitor: https://github.com/zeromq/pyzmq/issues/1272
checkPhase = ''
py.test $out/${python.sitePackages}/zmq/ -k "not test_socket \
and not test_current \
and not test_instance \
and not test_callable_check \
and not test_on_recv_basic \
and not test_on_recv_wake \
and not test_monitor \
and not test_cython"
'';
# Some of the tests use localhost networking.
__darwinAllowLocalNetworking = true;
}