10 # Should be bumped along with EFL!
12 buildPythonPackage rec {
17 url = "http://download.enlightenment.org/rel/bindings/python/${pname}-${version}.tar.xz";
18 sha256 = "0bk161xwlz4dlv56r68xwkm8snzfifaxd1j7w2wcyyk4fgvnvq4r";
21 nativeBuildInputs = [ pkg-config ];
23 buildInputs = [ enlightenment.efl ];
25 propagatedBuildInputs = [ dbus-python ];
28 NIX_CFLAGS_COMPILE="$(pkg-config --cflags efl evas) $NIX_CFLAGS_COMPILE"
32 ${python.interpreter} setup.py build_ext
36 ${python.interpreter} setup.py install --prefix=$out
42 description = "Python bindings for EFL and Elementary";
43 homepage = "https://phab.enlightenment.org/w/projects/python_bindings_for_efl/";
44 platforms = platforms.linux;
45 license = with licenses; [ gpl3 lgpl3 ];
46 maintainers = with maintainers; [ matejc tstrobel ftrvxmtrx romildo ];