3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/pyzmq/default.nix

40 lines
902 B
Nix
Raw Normal View History

{ buildPythonPackage
2018-04-05 20:18:15 +01:00
, fetchPypi
, pytest
, tornado
2018-10-30 17:08:36 +00:00
, zeromq
2018-04-05 20:18:15 +01:00
, py
, python
}:
buildPythonPackage rec {
pname = "pyzmq";
2020-08-16 18:31:14 +01:00
version = "19.0.2";
2018-04-05 20:18:15 +01:00
src = fetchPypi {
inherit pname version;
2020-08-16 18:31:14 +01:00
sha256 = "296540a065c8c21b26d63e3cea2d1d57902373b16e4256afe46422691903a438";
2018-04-05 20:18:15 +01:00
};
checkInputs = [ pytest tornado ];
2018-10-30 17:08:36 +00:00
buildInputs = [ zeromq ];
2018-04-05 20:18:15 +01:00
propagatedBuildInputs = [ py ];
2018-04-05 20:18:35 +01:00
# test_socket.py seems to be hanging
# others fail
# for test_monitor: https://github.com/zeromq/pyzmq/issues/1272
2018-04-05 20:18:15 +01:00
checkPhase = ''
2018-04-05 20:18:35 +01:00
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"
2018-04-05 20:18:15 +01:00
'';
2019-09-14 20:12:22 +01:00
# Some of the tests use localhost networking.
__darwinAllowLocalNetworking = true;
2018-04-05 20:18:15 +01:00
}