python3.pkgs.pyatspi: 2.18.0 → 2.26.0
This commit is contained in:
parent
d48e9ff92a
commit
ddc48afcca
@ -1,29 +1,35 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, at-spi2-core, pythonPackages }:
|
{ stdenv, fetchurl, pkgconfig, buildPythonPackage, isPy3k, at-spi2-core, pygobject3, gnome3 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
buildPythonPackage rec {
|
||||||
pname = "pyatspi";
|
pname = "pyatspi";
|
||||||
version = "2.18.0";
|
version = "2.26.0";
|
||||||
name = "${pname}-${version}";
|
format = "other";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/pyatspi/2.18/${name}.tar.xz";
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||||
sha256 = "0imbyk2v6c11da7pkwz91313pkkldxs8zfg81zb2ql6h0nnh6vzq";
|
sha256 = "0xdnix7gxzgf75xy9ris4dd6b05mqwicw190b98xqmypydyf95n6";
|
||||||
};
|
};
|
||||||
|
|
||||||
broken = true;
|
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
at-spi2-core
|
at-spi2-core
|
||||||
pkgconfig
|
pkgconfig
|
||||||
pythonPackages.python
|
pygobject3
|
||||||
pythonPackages.pygobject3
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
disabled = !isPy3k;
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
updateScript = gnome3.updateScript {
|
||||||
|
packageName = pname;
|
||||||
|
attrPath = "python3.pkgs.${pname}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Python 3 bindings for at-spi";
|
description = "Python client bindings for D-Bus AT-SPI";
|
||||||
homepage = http://www.linuxfoundation.org/en/AT-SPI_on_D-Bus;
|
homepage = https://wiki.linuxfoundation.org/accessibility/d-bus;
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = with maintainers; [ jgeerds ];
|
maintainers = with maintainers; [ jgeerds jtojnar ];
|
||||||
platforms = with platforms; unix;
|
platforms = with platforms; unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -315,7 +315,7 @@ in {
|
|||||||
inherit (pkgs) arrow-cpp cmake pkgconfig;
|
inherit (pkgs) arrow-cpp cmake pkgconfig;
|
||||||
};
|
};
|
||||||
|
|
||||||
pyatspi = disabledIf (!isPy3k) (callPackage ../development/python-modules/pyatspi { });
|
pyatspi = callPackage ../development/python-modules/pyatspi { };
|
||||||
|
|
||||||
pyaxmlparser = callPackage ../development/python-modules/pyaxmlparser { };
|
pyaxmlparser = callPackage ../development/python-modules/pyaxmlparser { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user