python3Packages.python-flirt: fix on darwin
This only ever built on Darwin when libiconv was propagated [0]. [0]: https://hydra.nixos.org/job/nixpkgs/trunk/python310Packages.python-flirt.x86_64-darwin/all
This commit is contained in:
@@ -1,7 +1,9 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, rustPlatform
|
||||
, libiconv
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@@ -26,6 +28,10 @@ buildPythonPackage rec {
|
||||
maturinBuildHook
|
||||
];
|
||||
|
||||
buildInputs = lib.optionals stdenv.isDarwin [
|
||||
libiconv
|
||||
];
|
||||
|
||||
buildAndTestSubdir = "pyflirt";
|
||||
|
||||
cargoDeps = rustPlatform.importCargoLock {
|
||||
|
||||
Reference in New Issue
Block a user