neard: stay with python2

not tested with python3.

+6 -4
+6 -4
pkgs/servers/neard/default.nix
··· 1 - { lib, stdenv, fetchurl, autoreconfHook, pkg-config, systemd, glib, dbus, libnl, pythonPackages }: 2 3 stdenv.mkDerivation rec { 4 name = "neard-0.16"; ··· 8 sha256 = "0bpdmyxvd3z54p95apz4bjb5jp8hbc04sicjapcryjwa8mh6pbil"; 9 }; 10 11 - nativeBuildInputs = [ autoreconfHook pkg-config ]; 12 - buildInputs = [ systemd glib dbus libnl pythonPackages.python pythonPackages.wrapPython ]; 13 - pythonPath = [ pythonPackages.pygobject2 pythonPackages.dbus-python pythonPackages.pygtk ]; 14 15 configureFlags = [ "--disable-debug" "--enable-tools" "--enable-ese" "--with-systemdsystemunitdir=$out/lib/systemd/system" ]; 16
··· 1 + { lib, stdenv, fetchurl, autoreconfHook, pkg-config, systemd, glib, dbus, libnl, python2Packages }: 2 3 stdenv.mkDerivation rec { 4 name = "neard-0.16"; ··· 8 sha256 = "0bpdmyxvd3z54p95apz4bjb5jp8hbc04sicjapcryjwa8mh6pbil"; 9 }; 10 11 + nativeBuildInputs = [ autoreconfHook pkg-config python2Packages.wrapPython ]; 12 + buildInputs = [ systemd glib dbus libnl ] ++ (with python2Packages; [ python ]); 13 + pythonPath = with python2Packages; [ pygobject2 dbus-python pygtk ]; 14 + 15 + strictDeps = true; 16 17 configureFlags = [ "--disable-debug" "--enable-tools" "--enable-ese" "--with-systemdsystemunitdir=$out/lib/systemd/system" ]; 18