2019-10-17 09:18:32 +01:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, python, pkgconfig, dbus, dbus-glib, isPyPy
|
2016-08-26 15:58:59 +01:00
|
|
|
, ncurses, pygobject3 }:
|
2011-07-21 18:31:57 +01:00
|
|
|
|
2019-10-17 09:18:32 +01:00
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "dbus-python";
|
2019-10-17 09:18:32 +01:00
|
|
|
version = "1.2.12";
|
2017-03-21 12:01:17 +00:00
|
|
|
format = "other";
|
2009-04-12 20:34:20 +01:00
|
|
|
|
2019-10-17 09:18:32 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2019-03-03 01:34:08 +00:00
|
|
|
|
2019-10-17 09:18:32 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0q7jmldv0bxxqnbj63cd7i81vs6y85xys4r0n63z4n2y9wndxm6d";
|
2009-04-12 20:34:20 +01:00
|
|
|
};
|
|
|
|
|
2019-03-03 01:34:08 +00:00
|
|
|
patches = [
|
|
|
|
./fix-includedir.patch
|
|
|
|
];
|
2015-01-08 09:26:49 +00:00
|
|
|
|
2019-10-17 09:18:32 +01:00
|
|
|
disabled = isPyPy;
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-02-25 02:23:58 +00:00
|
|
|
buildInputs = [ dbus dbus-glib ]
|
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;
|
2018-08-08 22:06:39 +01:00
|
|
|
checkInputs = [ dbus.out pygobject3 ];
|
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
|
|
|
};
|
|
|
|
}
|