python3Packages.gotify: stdenv.isDarwin -> stdenv.buildPlatform.isDarwin (#413978)

This commit is contained in:
Peder Bergebakken Sundt 2025-06-09 04:56:40 +02:00 committed by GitHub
commit de180a3a29
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 = ''