Files
nixpkgs/pkgs/development/python-modules/dbus/default.nix
T

32 lines
971 B
Nix
Raw Normal View History

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