a027470a69
The python.buildEnv wrapper expects that all pythonPackages have a pythonPath set, so we set to a dummy value here.
28 lines
865 B
Nix
28 lines
865 B
Nix
{ stdenv, fetchurl, python, pkgconfig, dbus, dbus_glib, dbus_tools, isPyPy }:
|
|
|
|
if isPyPy then throw "dbus-python not supported for interpreter ${python.executable}" else stdenv.mkDerivation rec {
|
|
name = "dbus-python-1.2.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://dbus.freedesktop.org/releases/dbus-python/${name}.tar.gz";
|
|
sha256 = "1py62qir966lvdkngg0v8k1khsqxwk5m4s8nflpk1agk5f5nqb71";
|
|
};
|
|
|
|
postPatch = "patchShebangs .";
|
|
|
|
buildInputs = [ python pkgconfig dbus dbus_glib ]
|
|
++ stdenv.lib.optional doCheck dbus_tools;
|
|
|
|
doCheck = false; # https://bugs.freedesktop.org/show_bug.cgi?id=57140
|
|
|
|
# Set empty pythonPath, so that the package is recognized as a python package
|
|
# for python.buildEnv
|
|
pythonPath = [];
|
|
|
|
meta = {
|
|
description = "Python DBus bindings";
|
|
license = stdenv.lib.licenses.mit;
|
|
platforms = dbus.meta.platforms;
|
|
};
|
|
}
|