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