summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python3-application
diff options
context:
space:
mode:
authorRick van Schijndel <rol3517@gmail.com>2022-05-29 22:45:48 +0200
committerJanne Heß <janne@hess.ooo>2022-05-30 13:42:59 +0200
commitafbb0f6ff4a6df918d1f0dc37dd2d4b97cf2881e (patch)
tree39d09cd939cd2a990cf77c61743b80d6cc2af74a /pkgs/development/python-modules/python3-application
parent7da0ca2e252799366176081186935682e8b3603a (diff)
treewide: pkgs/development/python-modules: mark broken for aarch64-linux
Diffstat (limited to 'pkgs/development/python-modules/python3-application')
-rw-r--r--pkgs/development/python-modules/python3-application/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/python3-application/default.nix b/pkgs/development/python-modules/python3-application/default.nix
index d2622b5768d0..ed3d6e6e7fef 100644
--- a/pkgs/development/python-modules/python3-application/default.nix
+++ b/pkgs/development/python-modules/python3-application/default.nix
@@ -27,7 +27,7 @@ buildPythonPackage rec {
pythonImportsCheck = [ "application" ];
meta = with lib; {
- broken = stdenv.isDarwin;
+ broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
description = "A collection of modules that are useful when building python applications";
homepage = "https://github.com/AGProjects/python3-application";
license = licenses.lgpl21Plus;