depot/third_party/nixpkgs/pkgs/development/python-modules/dbus/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

36 lines
840 B
Nix

{ lib, fetchPypi, buildPythonPackage, python, pkgconfig, dbus, dbus-glib, isPyPy
, ncurses, pygobject3 }:
buildPythonPackage rec {
pname = "dbus-python";
version = "1.2.12";
format = "other";
outputs = [ "out" "dev" ];
src = fetchPypi {
inherit pname version;
sha256 = "0q7jmldv0bxxqnbj63cd7i81vs6y85xys4r0n63z4n2y9wndxm6d";
};
patches = [
./fix-includedir.patch
];
disabled = isPyPy;
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;
};
}