folks: Fix build
This was missed in https://github.com/NixOS/nixpkgs/pull/80594. Also re-enable tests.
This commit is contained in:
parent
2a5292313c
commit
54d984f62a
|
@ -75,10 +75,16 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
dbus
|
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 = ''
|
postPatch = ''
|
||||||
chmod +x meson_post_install.py
|
chmod +x meson_post_install.py
|
||||||
|
|
Loading…
Reference in New Issue