commit
f94e0252f3
@ -1,27 +1,30 @@
|
|||||||
{ buildPythonApplication, lib, fetchurl, gettext, wrapGAppsHook
|
{ lib, fetchurl, gettext, wrapGAppsHook
|
||||||
, python, gtk3, gobject-introspection
|
|
||||||
, nbxmpp, pyasn1, pygobject3, gnome3, dbus-python, pillow
|
# Native dependencies
|
||||||
|
, python3, gtk3, gobject-introspection, defaultIconTheme
|
||||||
|
|
||||||
|
# Test dependencies
|
||||||
, xvfb_run, dbus
|
, xvfb_run, dbus
|
||||||
|
|
||||||
|
# Optional dependencies
|
||||||
, enableJingle ? true, farstream, gstreamer, gst-plugins-base, gst-libav, gst-plugins-ugly
|
, enableJingle ? true, farstream, gstreamer, gst-plugins-base, gst-libav, gst-plugins-ugly
|
||||||
, enableE2E ? true, pycrypto, python-gnupg
|
, enableE2E ? true
|
||||||
, enableSecrets ? true, libsecret
|
, enableSecrets ? true, libsecret
|
||||||
, enableRST ? true, docutils
|
, enableRST ? true, docutils
|
||||||
, enableSpelling ? true, gspell
|
, enableSpelling ? true, gspell
|
||||||
, enableUPnP ? true, gupnp-igd
|
, enableUPnP ? true, gupnp-igd
|
||||||
, enableOmemoPluginDependencies ? true, python-axolotl, qrcode
|
, enableOmemoPluginDependencies ? true
|
||||||
, extraPythonPackages ? pkgs: [], pythonPackages
|
, extraPythonPackages ? ps: []
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with lib;
|
python3.pkgs.buildPythonApplication rec {
|
||||||
|
pname = "gajim";
|
||||||
buildPythonApplication rec {
|
majorVersion = "1.1";
|
||||||
name = "gajim-${version}";
|
version = "${majorVersion}.2";
|
||||||
majorVersion = "1.0";
|
|
||||||
version = "${majorVersion}.3";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://gajim.org/downloads/${majorVersion}/gajim-${version}.tar.bz2";
|
url = "https://gajim.org/downloads/${majorVersion}/gajim-${version}.tar.bz2";
|
||||||
sha256 = "0ds4rqwfrpj89a489w6yih8gx5zi7qa4ffgld950fk7s0qxvcfnb";
|
sha256 = "1lx03cgi58z54xb7mhs6bc715lc00w5mpysf9n3q8zgn759fm0rj";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
@ -30,38 +33,38 @@ buildPythonApplication rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
gobject-introspection gtk3 gnome3.defaultIconTheme
|
gobject-introspection gtk3 defaultIconTheme
|
||||||
] ++ optionals enableJingle [ farstream gstreamer gst-plugins-base gst-libav gst-plugins-ugly ]
|
] ++ lib.optionals enableJingle [ farstream gstreamer gst-plugins-base gst-libav gst-plugins-ugly ]
|
||||||
++ optional enableSecrets libsecret
|
++ lib.optional enableSecrets libsecret
|
||||||
++ optional enableSpelling gspell
|
++ lib.optional enableSpelling gspell
|
||||||
++ optional enableUPnP gupnp-igd;
|
++ lib.optional enableUPnP gupnp-igd;
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
gettext wrapGAppsHook
|
gettext wrapGAppsHook
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
nbxmpp pyasn1 pygobject3 dbus-python pillow
|
nbxmpp pyasn1 pygobject3 dbus-python pillow cssutils precis-i18n keyring
|
||||||
] ++ optionals enableE2E [ pycrypto python-gnupg ]
|
] ++ lib.optionals enableE2E [ pycrypto python-gnupg ]
|
||||||
++ optional enableRST docutils
|
++ lib.optional enableRST docutils
|
||||||
++ optionals enableOmemoPluginDependencies [ python-axolotl qrcode ]
|
++ lib.optionals enableOmemoPluginDependencies [ python-axolotl qrcode ]
|
||||||
++ extraPythonPackages pythonPackages;
|
++ extraPythonPackages python3.pkgs;
|
||||||
|
|
||||||
checkInputs = [ xvfb_run dbus.daemon ];
|
checkInputs = [ xvfb_run dbus.daemon ];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
xvfb-run dbus-run-session \
|
xvfb-run dbus-run-session \
|
||||||
--config-file=${dbus.daemon}/share/dbus-1/session.conf \
|
--config-file=${dbus.daemon}/share/dbus-1/session.conf \
|
||||||
${python.interpreter} test/runtests.py
|
${python3.interpreter} setup.py test
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://gajim.org/;
|
homepage = http://gajim.org/;
|
||||||
description = "Jabber client written in PyGTK";
|
description = "Jabber client written in PyGTK";
|
||||||
license = licenses.gpl3Plus;
|
license = lib.licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [ raskin aszlig abbradar ];
|
maintainers = with lib.maintainers; [ raskin aszlig abbradar ];
|
||||||
downloadPage = "http://gajim.org/downloads.php";
|
downloadPage = "http://gajim.org/downloads.php";
|
||||||
updateWalker = true;
|
updateWalker = true;
|
||||||
platforms = platforms.linux;
|
platforms = lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
let
|
let
|
||||||
pname = "nbxmpp";
|
pname = "nbxmpp";
|
||||||
version = "0.6.8";
|
version = "0.6.9";
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
in buildPythonPackage rec {
|
in buildPythonPackage rec {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
@ -11,7 +11,7 @@ in buildPythonPackage rec {
|
|||||||
name = "${name}.tar.bz2";
|
name = "${name}.tar.bz2";
|
||||||
url = "https://dev.gajim.org/gajim/python-nbxmpp/repository/archive.tar.bz2?"
|
url = "https://dev.gajim.org/gajim/python-nbxmpp/repository/archive.tar.bz2?"
|
||||||
+ "ref=${name}";
|
+ "ref=${name}";
|
||||||
sha256 = "09zrqz01j45kvayfscd66avkrnn237lbjg9li5hjhyw92h6hkkc4";
|
sha256 = "14xrq0r5k1dk7rwj4cxyxfapi6gbnqg70mz94g6hn9ij06284mi7";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ pyopenssl ];
|
propagatedBuildInputs = [ pyopenssl ];
|
||||||
|
20
pkgs/development/python-modules/precis-i18n/default.nix
Normal file
20
pkgs/development/python-modules/precis-i18n/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchPypi, isPy3k }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "precis-i18n";
|
||||||
|
version = "1.0.0";
|
||||||
|
|
||||||
|
disabled = !isPy3k;
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
pname = "precis_i18n";
|
||||||
|
inherit version;
|
||||||
|
sha256 = "0gjhvwd8aifx94rl1ag08vlmndyx2q3fkyqb0c4i46x3p2bc2yi2";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://github.com/byllyfish/precis_i18n;
|
||||||
|
description = "Internationalized usernames and passwords";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
};
|
||||||
|
}
|
@ -22334,9 +22334,9 @@ in
|
|||||||
|
|
||||||
foomatic-filters = callPackage ../misc/drivers/foomatic-filters {};
|
foomatic-filters = callPackage ../misc/drivers/foomatic-filters {};
|
||||||
|
|
||||||
gajim = python3.pkgs.callPackage ../applications/networking/instant-messengers/gajim {
|
gajim = callPackage ../applications/networking/instant-messengers/gajim {
|
||||||
inherit (gst_all_1) gstreamer gst-plugins-base gst-libav gst-plugins-ugly;
|
inherit (gst_all_1) gstreamer gst-plugins-base gst-libav gst-plugins-ugly;
|
||||||
inherit (gnome3) gspell;
|
inherit (gnome3) gspell defaultIconTheme;
|
||||||
};
|
};
|
||||||
|
|
||||||
gammu = callPackage ../applications/misc/gammu { };
|
gammu = callPackage ../applications/misc/gammu { };
|
||||||
|
@ -3469,6 +3469,8 @@ in {
|
|||||||
name = "${python.libPrefix}-${pkgs.kmsxx.name}";
|
name = "${python.libPrefix}-${pkgs.kmsxx.name}";
|
||||||
});
|
});
|
||||||
|
|
||||||
|
precis-i18n = callPackage ../development/python-modules/precis-i18n { };
|
||||||
|
|
||||||
pvlib = callPackage ../development/python-modules/pvlib { };
|
pvlib = callPackage ../development/python-modules/pvlib { };
|
||||||
|
|
||||||
pybase64 = callPackage ../development/python-modules/pybase64 { };
|
pybase64 = callPackage ../development/python-modules/pybase64 { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user