depot/third_party/nixpkgs/pkgs/development/python-modules/pyzmq/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

93 lines
1.7 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
isPyPy,
# build-system
cffi,
cython,
cmake,
ninja,
packaging,
pathspec,
scikit-build-core,
# checks
pytestCheckHook,
python,
pythonOlder,
tornado,
zeromq,
pytest-asyncio,
}:
buildPythonPackage rec {
pname = "pyzmq";
version = "26.0.3";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-26fZ8uBH36K8o7AfT4SqUkZyUgPWKE43kPLKFfumtAo=";
};
build-system = [
cmake
ninja
packaging
pathspec
scikit-build-core
] ++ (if isPyPy then [ cffi ] else [ cython ]);
dontUseCmakeConfigure = true;
buildInputs = [ zeromq ];
dependencies = lib.optionals isPyPy [ cffi ];
nativeCheckInputs = [
pytestCheckHook
tornado
pytest-asyncio
];
pythonImportsCheck = [ "zmq" ];
pytestFlagsArray = [
"$out/${python.sitePackages}/zmq/tests/" # Folder with tests
# pytest.ini is missing in pypi's sdist
# https://github.com/zeromq/pyzmq/issues/1853#issuecomment-1592731986
"--asyncio-mode auto"
"--ignore=$out/lib/python3.12/site-packages/zmq/tests/test_mypy.py"
];
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 = [ ];
};
}