mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
39 lines
874 B
Nix
39 lines
874 B
Nix
{ buildPythonPackage
|
|
, fetchPypi
|
|
, pytest
|
|
, tornado
|
|
, zeromq
|
|
, py
|
|
, python
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyzmq";
|
|
version = "18.1.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "8c69a6cbfa94da29a34f6b16193e7c15f5d3220cb772d6d17425ff3faa063a6d";
|
|
};
|
|
|
|
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"
|
|
'';
|
|
|
|
# Some of the tests use localhost networking.
|
|
__darwinAllowLocalNetworking = true;
|
|
}
|