mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
30fd50aaab
pywalfox: refactor sha256->hash pywalfox: convert hash to SRI format pywalfox-native: init at 2.7.4 pywalfox-native: clean redundancy, del maintainer
23 lines
599 B
Nix
23 lines
599 B
Nix
{ 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 ];
|
|
};
|
|
}
|