mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
Merge pull request #271023 from tsandrini/create-pywalfox-native
pywalfox-native: init at 2.7.4
This commit is contained in:
commit
ecb3fe49f6
@ -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";
|
||||
|
22
pkgs/by-name/py/pywalfox-native/package.nix
Normal file
22
pkgs/by-name/py/pywalfox-native/package.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user