2016-05-25 07:19:09 +00:00
|
|
|
{ stdenv, fetchurl, python, pkgconfig, dbus, dbus_glib, dbus_tools, isPyPy
|
|
|
|
, ncurses }:
|
2011-07-21 17:31:57 +00:00
|
|
|
|
2014-09-11 12:29:20 +00:00
|
|
|
if isPyPy then throw "dbus-python not supported for interpreter ${python.executable}" else stdenv.mkDerivation rec {
|
2016-05-19 20:10:03 +00:00
|
|
|
name = "dbus-python-1.2.4";
|
2009-04-12 19:34:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-07-21 17:31:57 +00:00
|
|
|
url = "http://dbus.freedesktop.org/releases/dbus-python/${name}.tar.gz";
|
2016-05-19 20:10:03 +00:00
|
|
|
sha256 = "1k7rnaqrk7mdkg0k6n2jn3d1mxsl7s3i07g5a8va5yvl3y3xdwg2";
|
2009-04-12 19:34:20 +00:00
|
|
|
};
|
|
|
|
|
2015-01-08 09:26:49 +00:00
|
|
|
postPatch = "patchShebangs .";
|
|
|
|
|
2013-03-15 00:08:16 +00:00
|
|
|
buildInputs = [ python pkgconfig dbus dbus_glib ]
|
2016-05-25 07:19:09 +00:00
|
|
|
++ stdenv.lib.optional doCheck dbus_tools
|
|
|
|
# My guess why it's sometimes trying to -lncurses.
|
|
|
|
# It seems not to retain the dependency anyway.
|
|
|
|
++ stdenv.lib.optional (! python ? modules) ncurses;
|
2013-03-15 00:08:16 +00:00
|
|
|
|
2016-05-25 07:19:09 +00:00
|
|
|
doCheck = true;
|
2009-04-12 19:34:20 +00:00
|
|
|
|
2015-11-01 16:43:19 +00:00
|
|
|
# Set empty pythonPath, so that the package is recognized as a python package
|
|
|
|
# for python.buildEnv
|
|
|
|
pythonPath = [];
|
|
|
|
|
2009-04-12 19:34:20 +00:00
|
|
|
meta = {
|
|
|
|
description = "Python DBus bindings";
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.mit;
|
2015-04-25 22:08:05 +00:00
|
|
|
platforms = dbus.meta.platforms;
|
2009-04-12 19:34:20 +00:00
|
|
|
};
|
|
|
|
}
|