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