mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
56 lines
1.2 KiB
Nix
56 lines
1.2 KiB
Nix
{ lib
|
|
, fetchurl
|
|
, gdk-pixbuf
|
|
, gobject-introspection
|
|
, gtk3
|
|
, libnotify
|
|
, libsecret
|
|
, networkmanager
|
|
, python3Packages
|
|
, wrapGAppsHook3
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "eduvpn-client";
|
|
version = "4.4.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/eduvpn/python-${pname}/releases/download/${version}/python-${pname}-${version}.tar.xz";
|
|
hash = "sha256-IHRIjryAIeGcFqz5BMWsE0/gClaSmnwWhjc1f1c69vk=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gdk-pixbuf
|
|
gobject-introspection
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
libnotify
|
|
libsecret
|
|
networkmanager
|
|
];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
eduvpn-common
|
|
pygobject3
|
|
setuptools
|
|
];
|
|
|
|
checkInputs = with python3Packages; [
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://raw.githubusercontent.com/eduvpn/python-eduvpn-client/${version}/CHANGES.md";
|
|
description = "Linux client for eduVPN";
|
|
homepage = "https://github.com/eduvpn/python-eduvpn-client";
|
|
license = licenses.gpl3Plus;
|
|
mainProgram = "eduvpn-gui";
|
|
maintainers = with maintainers; [ benneti jwijenbergh ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|