pythonPackages.pythonefl: 1.25.0 -> 1.26.0

This commit is contained in:
José Romildo 2022-02-28 19:23:16 -03:00 committed by Jonathan Ringer
parent 62d63ea56e
commit dccca00e7a

View File

@ -4,6 +4,7 @@
, pkg-config
, python
, dbus-python
, packaging
, enlightenment
}:
@ -11,18 +12,18 @@
buildPythonPackage rec {
pname = "python-efl";
version = "1.25.0";
version = "1.26.0";
src = fetchurl {
url = "http://download.enlightenment.org/rel/bindings/python/${pname}-${version}.tar.xz";
sha256 = "0bk161xwlz4dlv56r68xwkm8snzfifaxd1j7w2wcyyk4fgvnvq4r";
sha256 = "0dj6f24n33hkpy0bkdclnzpxhvs8vpaxqaf7hkw0di19pjwrq25h";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ enlightenment.efl ];
propagatedBuildInputs = [ dbus-python ];
propagatedBuildInputs = [ dbus-python packaging ];
preConfigure = ''
NIX_CFLAGS_COMPILE="$(pkg-config --cflags efl evas) $NIX_CFLAGS_COMPILE"
@ -39,8 +40,8 @@ buildPythonPackage rec {
doCheck = false;
meta = with lib; {
description = "Python bindings for EFL and Elementary";
homepage = "https://phab.enlightenment.org/w/projects/python_bindings_for_efl/";
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 tstrobel ftrvxmtrx romildo ];