summary refs log tree commit diff
path: root/pkgs/development/python-modules/pystemd/default.nix
diff options
context:
space:
mode:
authorJanne Heß <janne@hess.ooo>2022-05-30 14:10:43 +0200
committerGitHub <noreply@github.com>2022-05-30 14:10:43 +0200
commitbfc5086ae9c82f1f9fea63f10485e1f43d128027 (patch)
treef235f8be0c39ef6ebcb73ed1dc59e9ec3aee33ea /pkgs/development/python-modules/pystemd/default.nix
parent90ce1f86b9bec2f468fd82316d12b1f9d24397d7 (diff)
parent26243136fe7559eb139d0bc6bda5d8a1ad737a3a (diff)
downloadnixpkgs-bfc5086ae9c82f1f9fea63f10485e1f43d128027.tar
nixpkgs-bfc5086ae9c82f1f9fea63f10485e1f43d128027.tar.gz
nixpkgs-bfc5086ae9c82f1f9fea63f10485e1f43d128027.tar.bz2
nixpkgs-bfc5086ae9c82f1f9fea63f10485e1f43d128027.tar.lz
nixpkgs-bfc5086ae9c82f1f9fea63f10485e1f43d128027.tar.xz
nixpkgs-bfc5086ae9c82f1f9fea63f10485e1f43d128027.tar.zst
nixpkgs-bfc5086ae9c82f1f9fea63f10485e1f43d128027.zip
Merge pull request #173671 from Mindavi/treewide/broken-zhf
treewide: start marking packages broken
Diffstat (limited to 'pkgs/development/python-modules/pystemd/default.nix')
-rw-r--r--pkgs/development/python-modules/pystemd/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pystemd/default.nix b/pkgs/development/python-modules/pystemd/default.nix
index e77dd605388..8dd24814cdc 100644
--- a/pkgs/development/python-modules/pystemd/default.nix
+++ b/pkgs/development/python-modules/pystemd/default.nix
@@ -1,4 +1,4 @@
-{ lib, python, systemd }:
+{ stdenv, lib, python, systemd }:
 
 python.pkgs.buildPythonPackage rec {
   pname = "pystemd";
@@ -16,6 +16,7 @@ python.pkgs.buildPythonPackage rec {
   checkPhase = "pytest tests";
 
   meta = with lib; {
+    broken = (stdenv.isLinux && stdenv.isAarch64);
     description = "A thin Cython-based wrapper on top of libsystemd, focused on exposing the dbus API via sd-bus in an automated and easy to consume way.";
     homepage = "https://github.com/facebookincubator/pystemd/";
     license = licenses.lgpl21Plus;