mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
pythonPackages.tokenizers: fix darwin build
This commit is contained in:
parent
7dcd2f54b8
commit
bf98858c0f
@ -1,9 +1,11 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, fetchurl
|
||||
, buildPythonPackage
|
||||
, rustPlatform
|
||||
, setuptools-rust
|
||||
, libiconv
|
||||
, numpy
|
||||
, datasets
|
||||
, pytestCheckHook
|
||||
@ -72,6 +74,10 @@ in buildPythonPackage rec {
|
||||
rust.rustc
|
||||
]);
|
||||
|
||||
buildInputs = lib.optionals stdenv.isDarwin [
|
||||
libiconv
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
numpy
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user