pywalfox-native: init at 2.7.4

pywalfox: refactor sha256->hash

pywalfox: convert hash to SRI format

pywalfox-native: init at 2.7.4

pywalfox-native: clean redundancy, del maintainer
This commit is contained in:
tsandrini 2023-11-29 21:08:17 +01:00
parent 3e499a7bac
commit 30fd50aaab

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