summary refs log tree commit diff
path: root/pkgs/development/python-modules/dbus/default.nix
blob: 262c93878d3f2ae6dd935454f371fa07cc82b960 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ lib, fetchurl, buildPythonPackage, python, pkgconfig, dbus, dbus-glib, isPyPy
, ncurses, pygobject3 }:

if isPyPy then throw "dbus-python not supported for interpreter ${python.executable}" else buildPythonPackage rec {
  pname = "dbus-python";
  version = "1.2.4";
  format = "other";

  outputs = [ "out" "dev" "doc" ];

  src = fetchurl {
    url = "https://dbus.freedesktop.org/releases/dbus-python/${pname}-${version}.tar.gz";
    sha256 = "1k7rnaqrk7mdkg0k6n2jn3d1mxsl7s3i07g5a8va5yvl3y3xdwg2";
  };

  patches = [
    ./fix-includedir.patch
  ];

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ dbus dbus-glib ]
    # My guess why it's sometimes trying to -lncurses.
    # It seems not to retain the dependency anyway.
    ++ lib.optional (! python ? modules) ncurses;

  doCheck = true;
  checkInputs = [ dbus.out pygobject3 ];

  meta = {
    description = "Python DBus bindings";
    license = lib.licenses.mit;
    platforms = dbus.meta.platforms;
  };
}