nixpkgs/pkgs/development/python-modules/pyzmq/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

69 lines
1.2 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, py
, pytestCheckHook
, python
, pythonOlder
, tornado
, zeromq
}:
buildPythonPackage rec {
pname = "pyzmq";
version = "24.0.1";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-IW9dfbtnFmdZ5ZsEebyoK4rPm+1gFbUmuOsQFD+wjnc=";
};
buildInputs = [
zeromq
];
propagatedBuildInputs = [
py
];
nativeCheckInputs = [
pytestCheckHook
tornado
];
pythonImportsCheck = [
"zmq"
];
pytestFlagsArray = [
"$out/${python.sitePackages}/zmq/tests/" # Folder with tests
];
disabledTests = [
# Tests hang
"test_socket"
"test_monitor"
# https://github.com/zeromq/pyzmq/issues/1272
"test_cython"
# Test fails
"test_mockable"
# Issues with the sandbox
"TestFutureSocket"
"TestIOLoop"
"TestPubLog"
];
# Some of the tests use localhost networking.
__darwinAllowLocalNetworking = true;
meta = with lib; {
description = "Python bindings for ØMQ";
homepage = "https://pyzmq.readthedocs.io/";
license = with licenses; [ bsd3 /* or */ lgpl3Only ];
maintainers = with maintainers; [ ];
};
}