From 835f60e578b47e91a8da4922877fee57a5b25f4f Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Wed, 4 Jun 2025 18:57:28 +0200 Subject: [PATCH] python3Packages.gotify: stdenv.isDarwin -> stdenv.buildPlatform.isDarwin --- pkgs/development/python-modules/gotify/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/gotify/default.nix b/pkgs/development/python-modules/gotify/default.nix index 9b1118937bc7..d2dcf8b0803d 100644 --- a/pkgs/development/python-modules/gotify/default.nix +++ b/pkgs/development/python-modules/gotify/default.nix @@ -33,7 +33,7 @@ buildPythonPackage rec { ]; # tests raise an exception if the system is not Linux or Windows - doCheck = !stdenv.isDarwin; + doCheck = !stdenv.buildPlatform.isDarwin; # tests require gotify-server to be located in ./tests/test-server/gotify-linux-{arch} postPatch = ''