about summary refs log tree commit diff
path: root/pkgs/by-name/py/pywalfox-native/package.nix
blob: 7f7884de57ec9ba1dd16fe1d78a36f1f477ddad2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, python3, fetchPypi }:

python3.pkgs.buildPythonApplication rec {
  pname = "pywalfox-native";
  version = "2.7.4";

  src = fetchPypi {
    inherit version;
    pname = "pywalfox";
    hash = "sha256-Wec9fic4lXT7gBY04D2EcfCb/gYoZcrYA/aMRWaA7WY=";
  };

  pythonImportsCheck = [ "pywalfox" ];

  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 ];
  };
}