2018-04-24 20:39:33 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, buildPythonPackage, isPy3k, at-spi2-core, pygobject3, gnome3 }:
|
2015-08-13 22:36:27 +01:00
|
|
|
|
2018-04-24 20:39:33 +01:00
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "pyatspi";
|
2020-04-08 16:31:16 +01:00
|
|
|
version = "2.36.0";
|
2018-04-24 20:39:33 +01:00
|
|
|
format = "other";
|
2015-08-13 22:36:27 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-04-24 20:39:33 +01:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-06-02 21:44:52 +01:00
|
|
|
sha256 = "1pg1zzjl167iavin6xzzm20mh3m6dvl7d8h1r571s44yj6zw2dji";
|
2015-08-13 22:36:27 +01:00
|
|
|
};
|
|
|
|
|
2019-01-18 07:16:23 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2015-08-13 22:36:27 +01:00
|
|
|
buildInputs = [
|
2018-02-25 02:23:58 +00:00
|
|
|
at-spi2-core
|
2018-04-24 20:39:33 +01:00
|
|
|
pygobject3
|
2015-08-13 22:36:27 +01:00
|
|
|
];
|
|
|
|
|
2018-04-24 20:39:33 +01:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
attrPath = "python3.pkgs.${pname}";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-08-13 22:36:27 +01:00
|
|
|
meta = with stdenv.lib; {
|
2018-04-24 20:39:33 +01:00
|
|
|
description = "Python client bindings for D-Bus AT-SPI";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://wiki.linuxfoundation.org/accessibility/d-bus";
|
2015-08-13 22:36:27 +01:00
|
|
|
license = licenses.gpl2;
|
2019-03-12 22:45:33 +00:00
|
|
|
maintainers = with maintainers; [ jtojnar ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; unix;
|
2015-08-13 22:36:27 +01:00
|
|
|
};
|
|
|
|
}
|