mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
python310Packages.json-stream-rs-tokenizer: fix darwin build
This commit is contained in:
parent
8bf3e834da
commit
2af04a503f
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user