mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
python3Packages.libcst: fix build on darwin
This commit is contained in:
parent
6826bc67ff
commit
8288609ff4
@ -1,8 +1,10 @@
|
|||||||
{ lib
|
{ lib
|
||||||
|
, stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, dataclasses
|
, dataclasses
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, hypothesis
|
, hypothesis
|
||||||
|
, libiconv
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, python
|
, python
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
@ -51,6 +53,8 @@ buildPythonPackage rec {
|
|||||||
rustPlatform.cargoSetupHook
|
rustPlatform.cargoSetupHook
|
||||||
] ++ (with rustPlatform; [ rust.cargo rust.rustc ]);
|
] ++ (with rustPlatform; [ rust.cargo rust.rustc ]);
|
||||||
|
|
||||||
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
hypothesis
|
hypothesis
|
||||||
typing-extensions
|
typing-extensions
|
||||||
|
Loading…
Reference in New Issue
Block a user