python3Packages.pyzmq: fix build

Tested building a few packages that depend on it too: circus,
jupyter-client, logbook, partd, rpcq, tornado, zerorpc.

Fixes: e597af5583 ("zeromq: enable curve support")
This commit is contained in:
Alyssa Ross
2024-09-14 13:47:48 +02:00
parent 7ea47b7b8a
commit 4c41851f23
@@ -18,6 +18,7 @@
python,
pythonOlder,
tornado,
libsodium,
zeromq,
pytest-asyncio,
}:
@@ -44,7 +45,10 @@ buildPythonPackage rec {
dontUseCmakeConfigure = true;
buildInputs = [ zeromq ];
buildInputs = [
libsodium
zeromq
];
dependencies = lib.optionals isPyPy [ cffi ];