summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-efl/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/python-efl/default.nix')
-rw-r--r--pkgs/development/python-modules/python-efl/default.nix37
1 files changed, 25 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/python-efl/default.nix b/pkgs/development/python-modules/python-efl/default.nix
index 6bc480b315de..63c1043729fe 100644
--- a/pkgs/development/python-modules/python-efl/default.nix
+++ b/pkgs/development/python-modules/python-efl/default.nix
@@ -1,12 +1,13 @@
-{ lib
-, fetchurl
-, buildPythonPackage
-, pkg-config
-, python
-, dbus-python
-, packaging
-, enlightenment
-, directoryListingUpdater
+{
+ lib,
+ fetchurl,
+ buildPythonPackage,
+ pkg-config,
+ python,
+ dbus-python,
+ packaging,
+ enlightenment,
+ directoryListingUpdater,
}:
# Should be bumped along with EFL!
@@ -25,7 +26,10 @@ buildPythonPackage rec {
buildInputs = [ enlightenment.efl ];
- propagatedBuildInputs = [ dbus-python packaging ];
+ propagatedBuildInputs = [
+ dbus-python
+ packaging
+ ];
preConfigure = ''
NIX_CFLAGS_COMPILE="$(pkg-config --cflags efl evas) $NIX_CFLAGS_COMPILE"
@@ -47,7 +51,16 @@ buildPythonPackage rec {
description = "Python bindings for Enlightenment Foundation Libraries";
homepage = "https://github.com/DaveMDS/python-efl";
platforms = platforms.linux;
- license = with licenses; [ gpl3 lgpl3 ];
- maintainers = with maintainers; [ matejc ftrvxmtrx ] ++ teams.enlightenment.members;
+ license = with licenses; [
+ gpl3
+ lgpl3
+ ];
+ maintainers =
+ with maintainers;
+ [
+ matejc
+ ftrvxmtrx
+ ]
+ ++ teams.enlightenment.members;
};
}