mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
python3Packages.gotify: stdenv.isDarwin -> stdenv.buildPlatform.isDarwin (#413978)
This commit is contained in:
commit
de180a3a29
1 changed files with 1 additions and 1 deletions
|
@ -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 = ''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue