Merge pull request #267589 from reckenrode/sourcehut-fix

sourcehut: fix build on Darwin

authored by

Weijia Wang and committed by
GitHub
20067f60 38f8b29c

+6 -2
+6 -2
pkgs/applications/version-management/sourcehut/default.nix
··· 1 - { python3 1 + { lib 2 + , stdenv 3 + , python3 2 4 , callPackage 3 5 , recurseIntoAttrs 4 6 , nixosTests ··· 35 37 hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA="; 36 38 }; 37 39 nativeCheckInputs = with super; [ pytestCheckHook mock ]; 38 - disabledTestPaths = []; 40 + disabledTestPaths = [] 41 + # Disable incompatible tests on Darwin. 42 + ++ lib.optionals stdenv.isDarwin [ "test/aaa_profiling" ]; 39 43 }); 40 44 41 45 flask-sqlalchemy = super.flask-sqlalchemy.overridePythonAttrs (oldAttrs: rec {