pyatspi: init at 2.16.0
This commit is contained in:
parent
4df408c8be
commit
0039622d64
22
pkgs/development/python-modules/pyatspi/default.nix
Normal file
22
pkgs/development/python-modules/pyatspi/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user