nixpkgs/pkgs/development/python-modules/python-dbusmock/default.nix
2019-02-19 20:54:36 +00:00

60 lines
1.6 KiB
Nix

{ lib, buildPythonPackage, fetchPypi,
nose, dbus, dbus-python, pygobject3,
which, pyflakes, pycodestyle, bluez, networkmanager
}:
buildPythonPackage rec {
pname = "python-dbusmock";
version = "0.18.1";
src = fetchPypi {
inherit pname version;
sha256 = "1hj02p65cic4jdc6a5xf1hx8j5icwy7dcrm5kg91lkjks4gwpg5h";
};
prePatch = ''
sed -i -e 's|pyflakes3|pyflakes|g' tests/test_code.py;
'';
# TODO: Get the rest of these tests running?
# This is a mocking library used as a check dependency for a single derivation.
# That derivation's tests pass. Maybe not worth the effort to fix these...
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"
# Very slow, consider disabling?
# "test_networkmanager"
];
checkInputs = [
nose dbus dbus-python which pycodestyle pyflakes
pygobject3 bluez bluez.test networkmanager
];
checkPhase = ''
runHook preCheck
export PATH="$PATH:${bluez.test}/test";
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;
};
}