1 { lib, fetchurl, pkg-config, buildPythonPackage, isPy3k, at-spi2-core, pygobject3, gnome, python }:
3 buildPythonPackage rec {
9 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
10 sha256 = "1FSJzz1HqhULGjXolJs7MQNfjCB15YjSa278Yllwxi4=";
13 nativeBuildInputs = [ pkg-config ];
21 "PYTHON=${python.pythonOnBuildForHost.interpreter}"
25 # useless python existence check for us
26 substituteInPlace configure \
27 --replace '&& ! which' '&& false'
33 updateScript = gnome.updateScript {
35 attrPath = "python3.pkgs.${pname}";
36 versionPolicy = "odd-unstable";
41 description = "Python client bindings for D-Bus AT-SPI";
42 homepage = "https://wiki.linuxfoundation.org/accessibility/d-bus";
43 license = licenses.gpl2;
44 maintainers = with maintainers; [ jtojnar ];
45 platforms = with platforms; unix;