1{ stdenv, fetchurl, pkgconfig, python3, python3Packages, at_spi2_core }:
2
3stdenv.mkDerivation rec {
4 version = "2.16.0";
5 name = "pyatspi-${version}";
6
7 src = fetchurl {
8 url = "mirror://gnome/sources/pyatspi/2.16/${name}.tar.xz";
9 sha256 = "185lwgv9bk1fc6vw2xypznzr7p8fhp84ggnrb706zwgalmy8aym6";
10 };
11
12 buildInputs = [
13 pkgconfig python3 python3Packages.pygobject3 at_spi2_core
14 ];
15
16 meta = with stdenv.lib; {
17 description = "Python 3 bindings for at-spi";
18 homepage = http://www.linuxfoundation.org/en/AT-SPI_on_D-Bus;
19 license = licenses.gpl2;
20 maintainers = with maintainers; [ jgeerds ];
21 };
22}