From 54d984f62a538c37babd2f34e067398c6ec165df Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Tue, 3 Mar 2020 13:22:51 +0100 Subject: [PATCH] folks: Fix build This was missed in https://github.com/NixOS/nixpkgs/pull/80594. Also re-enable tests. --- pkgs/development/libraries/folks/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/folks/default.nix b/pkgs/development/libraries/folks/default.nix index 6179ea983e33..be574ae4aa12 100644 --- a/pkgs/development/libraries/folks/default.nix +++ b/pkgs/development/libraries/folks/default.nix @@ -75,10 +75,16 @@ stdenv.mkDerivation rec { checkInputs = [ dbus + (python3.withPackages (pp: with pp; [ + python-dbusmock + # The following possibly need to be propagated by dbusmock + # if they are not optional + dbus-python + pygobject3 + ])) ]; - # TODO: enable tests - # doCheck = true; + doCheck = true; postPatch = '' chmod +x meson_post_install.py