pyatspi: call via pythonPackages

This commit is contained in:
Frederik Rietdijk
2016-03-13 16:39:07 -04:00
parent 1e68008503
commit bb13afea6c
3 changed files with 10 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, python3, python3Packages, at_spi2_core }:
{ stdenv, fetchurl, pkgconfig, at_spi2_core, pythonPackages }:
stdenv.mkDerivation rec {
version = "2.18.0";
@@ -9,8 +9,13 @@ stdenv.mkDerivation rec {
sha256 = "0imbyk2v6c11da7pkwz91313pkkldxs8zfg81zb2ql6h0nnh6vzq";
};
broken = true;
buildInputs = [
pkgconfig python3 python3Packages.pygobject3 at_spi2_core
at_spi2_core
pkgconfig
pythonPackages.python
pythonPackages.pygobject3
];
meta = with stdenv.lib; {