4ed7a4b993
76999cc40e6 changed some hashes resulting in this PR being technically a mass rebuild. To avoid this, I am restoring some of the hashes (even though it seems silly). My main goal is to get this PR merged quickly as treewide changes like this get out-of-date quickly. This commit should be reverted on the next mass rebuild.
31 lines
937 B
Nix
31 lines
937 B
Nix
{ 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";
|
|
|
|
src = fetchurl {
|
|
url = "http://dbus.freedesktop.org/releases/dbus-python/${pname}-${version}.tar.gz";
|
|
sha256 = "1k7rnaqrk7mdkg0k6n2jn3d1mxsl7s3i07g5a8va5yvl3y3xdwg2";
|
|
};
|
|
|
|
postPatch = "patchShebangs .";
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ dbus dbus-glib ]
|
|
++ lib.optionals doCheck [ dbus.out pygobject3 ]
|
|
# My guess why it's sometimes trying to -lncurses.
|
|
# It seems not to retain the dependency anyway.
|
|
++ lib.optional (! python ? modules) ncurses;
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "Python DBus bindings";
|
|
license = lib.licenses.mit;
|
|
platforms = dbus.meta.platforms;
|
|
};
|
|
}
|