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

30 lines
720 B
Nix
Raw Normal View History

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