2014-09-11 13:29:20 +01:00
|
|
|
{ stdenv, fetchurl, python, pkgconfig, dbus, dbus_glib, dbus_tools, isPyPy }:
|
2011-07-21 18:31:57 +01:00
|
|
|
|
2014-09-11 13:29:20 +01:00
|
|
|
if isPyPy then throw "dbus-python not supported for interpreter ${python.executable}" else stdenv.mkDerivation rec {
|
2013-11-17 14:10:46 +00:00
|
|
|
name = "dbus-python-1.2.0";
|
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-11-17 14:10:46 +00:00
|
|
|
sha256 = "1py62qir966lvdkngg0v8k1khsqxwk5m4s8nflpk1agk5f5nqb71";
|
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";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.mit;
|
2009-04-12 20:34:20 +01:00
|
|
|
};
|
|
|
|
}
|