3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.python-dbusmock: init at 0.18.1

This commit is contained in:
Dan Callahan 2019-02-18 21:54:25 +00:00
parent ffca542386
commit b121c01672
No known key found for this signature in database
GPG key ID: 8D6DD713E9EBA7FD
2 changed files with 61 additions and 0 deletions

View file

@ -0,0 +1,59 @@
{ 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;
};
}

View file

@ -720,6 +720,8 @@ in {
python-binance = callPackage ../development/python-modules/python-binance { };
python-dbusmock = callPackage ../development/python-modules/python-dbusmock { };
python-engineio = callPackage ../development/python-modules/python-engineio { };
python-hosts = callPackage ../development/python-modules/python-hosts { };