nixpkgs/pkgs/development/python-modules/pyatspi/default.nix

28 lines
660 B
Nix
Raw Normal View History

2016-03-13 20:39:07 +00:00
{ stdenv, fetchurl, pkgconfig, at_spi2_core, pythonPackages }:
2015-08-13 21:36:27 +00:00
stdenv.mkDerivation rec {
2015-10-23 12:33:46 +00:00
version = "2.18.0";
2015-08-13 21:36:27 +00:00
name = "pyatspi-${version}";
src = fetchurl {
2015-10-23 12:33:46 +00:00
url = "mirror://gnome/sources/pyatspi/2.18/${name}.tar.xz";
sha256 = "0imbyk2v6c11da7pkwz91313pkkldxs8zfg81zb2ql6h0nnh6vzq";
2015-08-13 21:36:27 +00:00
};
2016-03-13 20:39:07 +00:00
broken = true;
2015-08-13 21:36:27 +00:00
buildInputs = [
2016-03-13 20:39:07 +00:00
at_spi2_core
pkgconfig
pythonPackages.python
pythonPackages.pygobject3
2015-08-13 21:36:27 +00:00
];
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 ];
};
}