9 , directoryListingUpdater
12 # Should be bumped along with EFL!
14 buildPythonPackage rec {
17 format = "setuptools";
20 url = "http://download.enlightenment.org/rel/bindings/python/${pname}-${version}.tar.xz";
21 hash = "sha256-3Ns5fhIHihnpDYDnxvPP00WIZL/o1UWLzgNott4GKNc=";
24 nativeBuildInputs = [ pkg-config ];
26 buildInputs = [ enlightenment.efl ];
28 propagatedBuildInputs = [ dbus-python packaging ];
31 NIX_CFLAGS_COMPILE="$(pkg-config --cflags efl evas) $NIX_CFLAGS_COMPILE"
35 ${python.pythonOnBuildForHost.interpreter} setup.py build_ext
39 ${python.pythonOnBuildForHost.interpreter} setup.py install --prefix=$out --single-version-externally-managed
44 passthru.updateScript = directoryListingUpdater { };
47 description = "Python bindings for Enlightenment Foundation Libraries";
48 homepage = "https://github.com/DaveMDS/python-efl";
49 platforms = platforms.linux;
50 license = with licenses; [ gpl3 lgpl3 ];
51 maintainers = with maintainers; [ matejc ftrvxmtrx ] ++ teams.enlightenment.members;