python310Packages.json-stream-rs-tokenizer: fix darwin build

This commit is contained in:
Martin Weinelt 2023-05-20 22:50:43 +02:00
parent 8bf3e834da
commit 2af04a503f
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -1,8 +1,10 @@
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, rustPlatform
, cargo
, darwin
, rustc
, setuptools-rust
, json-stream-rs-tokenizer
@ -38,6 +40,10 @@ buildPythonPackage rec {
rustc
];
buildInputs = lib.optionals stdenv.isDarwin [
darwin.libiconv
];
# Tests depend on json-stream, which depends on this package.
# To avoid infinite recursion, we only enable tests when building passthru.tests.
doCheck = false;