Merge pull request #271023 from tsandrini/create-pywalfox-native

pywalfox-native: init at 2.7.4
This commit is contained in:
Emily Trau 2023-12-01 15:41:20 +11:00 committed by GitHub
commit ecb3fe49f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View File

@ -18537,6 +18537,12 @@
github = "Trundle";
githubId = 332418;
};
tsandrini = {
email = "tomas.sandrini@seznam.cz";
name = "Tomáš Sandrini";
github = "tsandrini";
githubId = 21975189;
};
tscholak = {
email = "torsten.scholak@googlemail.com";
github = "tscholak";

View File

@ -0,0 +1,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 ];
};
}