forked from mirrors/nixpkgs
pythonPackages.python-dbusmock: init at 0.18.1
This commit is contained in:
parent
ffca542386
commit
b121c01672
59
pkgs/development/python-modules/python-dbusmock/default.nix
Normal file
59
pkgs/development/python-modules/python-dbusmock/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue