Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / python-efl / default.nix
blob6bc480b315de62cc1569d200646ea115e8179839
1 { lib
2 , fetchurl
3 , buildPythonPackage
4 , pkg-config
5 , python
6 , dbus-python
7 , packaging
8 , enlightenment
9 , directoryListingUpdater
12 # Should be bumped along with EFL!
14 buildPythonPackage rec {
15   pname = "python-efl";
16   version = "1.26.1";
17   format = "setuptools";
19   src = fetchurl {
20     url = "http://download.enlightenment.org/rel/bindings/python/${pname}-${version}.tar.xz";
21     hash = "sha256-3Ns5fhIHihnpDYDnxvPP00WIZL/o1UWLzgNott4GKNc=";
22   };
24   nativeBuildInputs = [ pkg-config ];
26   buildInputs = [ enlightenment.efl ];
28   propagatedBuildInputs = [ dbus-python packaging ];
30   preConfigure = ''
31     NIX_CFLAGS_COMPILE="$(pkg-config --cflags efl evas) $NIX_CFLAGS_COMPILE"
32   '';
34   preBuild = ''
35     ${python.pythonOnBuildForHost.interpreter} setup.py build_ext
36   '';
38   installPhase = ''
39     ${python.pythonOnBuildForHost.interpreter} setup.py install --prefix=$out --single-version-externally-managed
40   '';
42   doCheck = false;
44   passthru.updateScript = directoryListingUpdater { };
46   meta = with lib; {
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;
52   };