1{ stdenv, fetchurl, pkgconfig, at_spi2_core, pythonPackages }:
2
3stdenv.mkDerivation rec {
4 pname = "pyatspi";
5 version = "2.18.0";
6 name = "${pname}-${version}";
7
8 src = fetchurl {
9 url = "mirror://gnome/sources/pyatspi/2.18/${name}.tar.xz";
10 sha256 = "0imbyk2v6c11da7pkwz91313pkkldxs8zfg81zb2ql6h0nnh6vzq";
11 };
12
13 broken = true;
14
15 buildInputs = [
16 at_spi2_core
17 pkgconfig
18 pythonPackages.python
19 pythonPackages.pygobject3
20 ];
21
22 meta = with stdenv.lib; {
23 description = "Python 3 bindings for at-spi";
24 homepage = http://www.linuxfoundation.org/en/AT-SPI_on_D-Bus;
25 license = licenses.gpl2;
26 maintainers = with maintainers; [ jgeerds ];
27 platforms = with platforms; unix;
28 };
29}