python3Packages.pyppeteer: init at 0.2.2

This commit is contained in:
Kierán Meinhardt 2020-11-17 20:58:03 +01:00
parent 3a30b1fc16
commit 097f5a54a6
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ buildPythonPackage, fetchPypi, lib, urllib3, pyee, tqdm, websockets, appdirs }:
buildPythonPackage rec {
pname = "pyppeteer";
version = "0.2.2";
src = fetchPypi {
inherit pname version;
sha256 = "1s92izan7s3iffc85wpwi1qv9brcq0rlfqyi84wmpmg1dxk64g0m";
};
# tests want to write to /homeless-shelter
doCheck = false;
propagatedBuildInputs = [
appdirs
websockets
tqdm
pyee
urllib3
];
meta = {
description = "Headless chrome/chromium automation library (unofficial port of puppeteer)";
homepage = "https://github.com/pyppeteer/pyppeteer";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ kmein ];
};
}

View File

@ -5346,6 +5346,8 @@ in {
pypoppler = callPackage ../development/python-modules/pypoppler { };
pyppeteer = callPackage ../development/python-modules/pyppeteer { };
pyprind = callPackage ../development/python-modules/pyprind { };
pyprof2calltree = callPackage ../development/python-modules/pyprof2calltree { };