2017-03-21 12:01:17 +00:00
|
|
|
{ lib, fetchurl, buildPythonPackage, python, pkgconfig, dbus, dbus_glib, dbus_tools, isPyPy
|
2016-08-26 15:58:59 +01:00
|
|
|
, ncurses, pygobject3 }:
|
2011-07-21 18:31:57 +01:00
|
|
|
|
2017-03-21 12:01:17 +00:00
|
|
|
if isPyPy then throw "dbus-python not supported for interpreter ${python.executable}" else buildPythonPackage rec {
|
2016-05-19 21:10:03 +01:00
|
|
|
name = "dbus-python-1.2.4";
|
2017-03-21 12:01:17 +00:00
|
|
|
format = "other";
|
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";
|
2016-05-19 21:10:03 +01:00
|
|
|
sha256 = "1k7rnaqrk7mdkg0k6n2jn3d1mxsl7s3i07g5a8va5yvl3y3xdwg2";
|
2009-04-12 20:34:20 +01:00
|
|
|
};
|
|
|
|
|
2015-01-08 09:26:49 +00:00
|
|
|
postPatch = "patchShebangs .";
|
|
|
|
|
2016-08-31 10:01:16 +01:00
|
|
|
buildInputs = [ pkgconfig dbus dbus_glib ]
|
|
|
|
++ lib.optionals doCheck [ dbus_tools pygobject3 ]
|
2016-05-25 08:19:09 +01:00
|
|
|
# My guess why it's sometimes trying to -lncurses.
|
|
|
|
# It seems not to retain the dependency anyway.
|
2016-08-31 10:01:16 +01:00
|
|
|
++ lib.optional (! python ? modules) ncurses;
|
2013-03-15 00:08:16 +00:00
|
|
|
|
2016-05-25 08:19:09 +01:00
|
|
|
doCheck = true;
|
2009-04-12 20:34:20 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Python DBus bindings";
|
2016-08-31 10:01:16 +01:00
|
|
|
license = lib.licenses.mit;
|
2015-04-25 23:08:05 +01:00
|
|
|
platforms = dbus.meta.platforms;
|
2009-04-12 20:34:20 +01:00
|
|
|
};
|
|
|
|
}
|