pyatspi: init at 2.16.0

This commit is contained in:
Jascha Geerds 2015-08-13 23:36:27 +02:00
parent 4df408c8be
commit 0039622d64
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, fetchurl, pkgconfig, python3, python3Packages, at_spi2_core }:
stdenv.mkDerivation rec {
version = "2.16.0";
name = "pyatspi-${version}";
src = fetchurl {
url = "mirror://gnome/sources/pyatspi/2.16/${name}.tar.xz";
sha256 = "185lwgv9bk1fc6vw2xypznzr7p8fhp84ggnrb706zwgalmy8aym6";
};
buildInputs = [
pkgconfig python3 python3Packages.pygobject3 at_spi2_core
];
meta = with stdenv.lib; {
description = "Python 3 bindings for at-spi";
homepage = http://www.linuxfoundation.org/en/AT-SPI_on_D-Bus;
license = licenses.gpl2;
maintainers = with maintainers; [ jgeerds ];
};
}

View File

@ -2742,6 +2742,8 @@ let
pwnat = callPackage ../tools/networking/pwnat { };
pyatspi = callPackage ../development/python-modules/pyatspi { };
pycangjie = callPackage ../development/python-modules/pycangjie { };
pydb = callPackage ../development/tools/pydb { };