2023-11-29 21:08:17 +01:00
|
|
|
{ lib, python3, fetchPypi }:
|
|
|
|
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2023-12-02 15:16:29 +01:00
|
|
|
pname = "pywalfox-native";
|
|
|
|
version = "2.7.4";
|
2023-11-29 21:08:17 +01:00
|
|
|
|
2023-12-02 15:16:29 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit version;
|
|
|
|
pname = "pywalfox";
|
|
|
|
hash = "sha256-Wec9fic4lXT7gBY04D2EcfCb/gYoZcrYA/aMRWaA7WY=";
|
|
|
|
};
|
2023-11-29 21:08:17 +01:00
|
|
|
|
2023-12-02 15:16:29 +01:00
|
|
|
pythonImportsCheck = [ "pywalfox" ];
|
2023-11-29 21:08:17 +01:00
|
|
|
|
2023-12-02 15:16:29 +01:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/Frewacom/pywalfox-native";
|
|
|
|
description = "Native app used alongside the Pywalfox addon";
|
|
|
|
mainProgram = "pywalfox";
|
|
|
|
license = licenses.mpl20;
|
|
|
|
maintainers = with maintainers; [ tsandrini ];
|
|
|
|
};
|
|
|
|
}
|