Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
python3-shapely: replace stdenv.is with stdenv.hostPlatform.is
Browse files Browse the repository at this point in the history
  • Loading branch information
imincik committed Sep 27, 2024
1 parent f5d3697 commit 8de618e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/shapely/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ buildPythonPackage rec {
cd $out
'';

disabledTests = lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [
disabledTests = lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [
# FIXME(lf-): these logging tests are broken, which is definitely our
# fault. I've tried figuring out the cause and failed.
#
Expand Down

0 comments on commit 8de618e

Please sign in to comment.