pythonPackages.pywebview: init at 3.2

This commit is contained in:
Johannes Schleifenbaum 2020-03-10 19:19:54 +01:00 committed by Jon
parent 004325edce
commit e0a0263d44
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib, buildPythonPackage, fetchFromGitHub }:
buildPythonPackage rec {
pname = "pywebview";
version = "3.2";
src = fetchFromGitHub {
owner = "r0x0r";
repo = "pywebview";
rev = version;
sha256 = "0anwm6s0pp7xmgylr4m52v7lw825sdby7fajcl929l099n757gq7";
};
# disabled due to error in loading unittest
# don't know how to make test from: None
doCheck = false;
meta = with lib; {
homepage = "https://github.com/r0x0r/pywebview";
description = "Lightweight cross-platform wrapper around a webview.";
license = licenses.bsd3;
maintainers = with maintainers; [ jojosch ];
};
}

View File

@ -1354,6 +1354,8 @@ in {
pywebpush = callPackage ../development/python-modules/pywebpush { };
pywebview = callPackage ../development/python-modules/pywebview { };
pywick = callPackage ../development/python-modules/pywick { };
pyxml = disabledIf isPy3k (callPackage ../development/python-modules/pyxml{ });