2021-01-18 22:50:56 -08:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, python, pkg-config, dbus, dbus-glib, isPyPy
|
2020-10-18 12:49:12 -07:00
|
|
|
, ncurses, pygobject3, isPy3k }:
|
2011-07-21 10:31:57 -07:00
|
|
|
|
2019-10-17 01:18:32 -07:00
|
|
|
buildPythonPackage rec {
|
2017-05-27 02:25:35 -07:00
|
|
|
pname = "dbus-python";
|
2020-07-20 01:19:49 -07:00
|
|
|
version = "1.2.16";
|
2017-03-21 05:01:17 -07:00
|
|
|
format = "other";
|
2009-04-12 12:34:20 -07:00
|
|
|
|
2019-10-17 01:18:32 -07:00
|
|
|
outputs = [ "out" "dev" ];
|
2019-03-02 17:34:08 -08:00
|
|
|
|
2019-10-17 01:18:32 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-07-20 01:19:49 -07:00
|
|
|
sha256 = "196m5rk3qzw5nkmgzjl7wmq0v7vpwfhh8bz2sapdi5f9hqfqy8qi";
|
2009-04-12 12:34:20 -07:00
|
|
|
};
|
|
|
|
|
2019-03-02 17:34:08 -08:00
|
|
|
patches = [
|
|
|
|
./fix-includedir.patch
|
|
|
|
];
|
2015-01-08 01:26:49 -08:00
|
|
|
|
2019-10-17 01:18:32 -07:00
|
|
|
disabled = isPyPy;
|
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
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
|
|
|
|
2020-10-18 12:49:12 -07:00
|
|
|
doCheck = isPy3k;
|
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
|
|
|
};
|
|
|
|
}
|