mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-13 19:43:02 +08:00
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
88 lines
1.9 KiB
Nix
88 lines
1.9 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, nose
|
|
, dbus
|
|
, dbus-python
|
|
, pygobject3
|
|
, bluez
|
|
, networkmanager
|
|
, setuptools-scm
|
|
, runCommand
|
|
}:
|
|
|
|
let
|
|
# Cannot just add it to path in preCheck since that attribute will be passed to
|
|
# mkDerivation even with doCheck = false, causing a dependency cycle.
|
|
pbap-client = runCommand "pbap-client" { } ''
|
|
mkdir -p "$out/bin"
|
|
ln -s "${bluez.test}/test/pbap-client" "$out/bin/pbap-client"
|
|
'';
|
|
in buildPythonPackage rec {
|
|
pname = "python-dbusmock";
|
|
version = "0.28.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "martinpitt";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "sha256-tNV1GQsUG5BGTNGB0VBUa0Yxqv/HsRSlRfEU4KNd29w=";
|
|
};
|
|
|
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
|
|
|
nativeBuildInputs = [
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
dbus-python
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
dbus
|
|
pygobject3
|
|
bluez
|
|
pbap-client
|
|
networkmanager
|
|
nose
|
|
];
|
|
|
|
# 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"
|
|
# needs glib
|
|
"test_accounts_service"
|
|
# needs dbus-daemon active
|
|
"test_systemd"
|
|
# 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;
|
|
};
|
|
}
|