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

39 lines
874 B
Nix
Raw Normal View History

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