2018-07-17 13:11:16 -07:00
|
|
|
{ lib, fetchurl, buildPythonPackage, python, pkgconfig, dbus, dbus-glib, isPyPy
|
2016-08-26 07:58:59 -07:00
|
|
|
, ncurses, pygobject3 }:
|
2011-07-21 10:31:57 -07:00
|
|
|
|
2017-03-21 05:01:17 -07:00
|
|
|
if isPyPy then throw "dbus-python not supported for interpreter ${python.executable}" else buildPythonPackage rec {
|
2017-05-27 02:25:35 -07:00
|
|
|
pname = "dbus-python";
|
|
|
|
version = "1.2.4";
|
2017-03-21 05:01:17 -07:00
|
|
|
format = "other";
|
2009-04-12 12:34:20 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-23 06:27:58 -07:00
|
|
|
url = "http://dbus.freedesktop.org/releases/dbus-python/${pname}-${version}.tar.gz";
|
2016-05-19 13:10:03 -07:00
|
|
|
sha256 = "1k7rnaqrk7mdkg0k6n2jn3d1mxsl7s3i07g5a8va5yvl3y3xdwg2";
|
2009-04-12 12:34:20 -07:00
|
|
|
};
|
|
|
|
|
2015-01-08 01:26:49 -08:00
|
|
|
postPatch = "patchShebangs .";
|
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-02-24 18:23:58 -08:00
|
|
|
buildInputs = [ dbus dbus-glib ]
|
2016-05-25 00:19:09 -07:00
|
|
|
# My guess why it's sometimes trying to -lncurses.
|
|
|
|
# It seems not to retain the dependency anyway.
|
2016-08-31 02:01:16 -07:00
|
|
|
++ lib.optional (! python ? modules) ncurses;
|
2013-03-14 17:08:16 -07:00
|
|
|
|
2016-05-25 00:19:09 -07:00
|
|
|
doCheck = true;
|
2018-08-08 14:06:39 -07:00
|
|
|
checkInputs = [ dbus.out pygobject3 ];
|
2009-04-12 12:34:20 -07:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Python DBus bindings";
|
2016-08-31 02:01:16 -07:00
|
|
|
license = lib.licenses.mit;
|
2015-04-25 15:08:05 -07:00
|
|
|
platforms = dbus.meta.platforms;
|
2009-04-12 12:34:20 -07:00
|
|
|
};
|
|
|
|
}
|