2013-03-15 00:08:16 +00:00
|
|
|
{ stdenv, fetchurl, python, pkgconfig, dbus, dbus_glib, dbus_tools }:
|
2011-07-21 18:31:57 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-03-15 00:08:16 +00:00
|
|
|
name = "dbus-python-1.1.1";
|
2009-04-12 20:34:20 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-07-21 18:31:57 +01:00
|
|
|
url = "http://dbus.freedesktop.org/releases/dbus-python/${name}.tar.gz";
|
2013-03-15 00:08:16 +00:00
|
|
|
sha256 = "122yj5y0mndk9axh735qvwwckck6s6x0q84dw6p97mplp17wl5w9";
|
2009-04-12 20:34:20 +01:00
|
|
|
};
|
|
|
|
|
2013-03-15 00:08:16 +00:00
|
|
|
postPatch = "patchShebangs .";
|
|
|
|
|
|
|
|
buildInputs = [ python pkgconfig dbus dbus_glib ]
|
|
|
|
++ stdenv.lib.optional doCheck dbus_tools;
|
|
|
|
|
|
|
|
doCheck = false; # https://bugs.freedesktop.org/show_bug.cgi?id=57140
|
2009-04-12 20:34:20 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Python DBus bindings";
|
2013-03-15 00:08:16 +00:00
|
|
|
license = "MIT";
|
2009-04-12 20:34:20 +01:00
|
|
|
};
|
|
|
|
}
|