2022-08-12 12:06:08 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, nose
|
|
|
|
, dbus
|
|
|
|
, dbus-python
|
|
|
|
, pygobject3
|
|
|
|
, bluez
|
|
|
|
, networkmanager
|
|
|
|
, setuptools-scm
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "python-dbusmock";
|
2022-08-12 12:06:08 +00:00
|
|
|
version = "0.28.3";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "martinpitt";
|
|
|
|
repo = pname;
|
2022-08-12 12:06:08 +00:00
|
|
|
rev = "refs/tags/${version}";
|
|
|
|
sha256 = "sha256-LV94F2f0Ir2Ayzk2YLL76TqeUuC0f7e+bH3vC/xKgfU=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-08-12 12:06:08 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace pyproject.toml \
|
|
|
|
--replace '"dbus-python"' ""
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2022-08-12 12:06:08 +00:00
|
|
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
setuptools-scm
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
dbus-python
|
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
dbus
|
|
|
|
pygobject3
|
|
|
|
bluez
|
|
|
|
(lib.getOutput "test" bluez)
|
|
|
|
networkmanager
|
|
|
|
nose
|
|
|
|
];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
# TODO: Get the rest of these tests running?
|
|
|
|
NOSE_EXCLUDE = lib.concatStringsSep "," [
|
|
|
|
"test_bluez4" # NixOS ships BlueZ5
|
|
|
|
# These appear to fail because they're expecting to run in an Ubuntu chroot?
|
|
|
|
"test_everything" # BlueZ5 OBEX
|
|
|
|
"test_polkitd"
|
|
|
|
"test_consolekit"
|
|
|
|
"test_api"
|
|
|
|
"test_logind"
|
|
|
|
"test_notification_daemon"
|
|
|
|
"test_ofono"
|
|
|
|
"test_gnome_screensaver"
|
|
|
|
"test_cli"
|
|
|
|
"test_timedated"
|
|
|
|
"test_upower"
|
2022-02-10 20:34:41 +00:00
|
|
|
# needs glib
|
|
|
|
"test_accounts_service"
|
|
|
|
# needs dbus-daemon active
|
|
|
|
"test_systemd"
|
2020-04-24 23:36:52 +00:00
|
|
|
# Very slow, consider disabling?
|
|
|
|
# "test_networkmanager"
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
nosetests -v
|
|
|
|
runHook postCheck
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Mock D-Bus objects for tests";
|
|
|
|
homepage = "https://github.com/martinpitt/python-dbusmock";
|
|
|
|
license = licenses.lgpl3Plus;
|
|
|
|
maintainers = with maintainers; [ callahad ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|