python3Packages.pyppeteer: init at 0.2.2
This commit is contained in:
parent
3a30b1fc16
commit
097f5a54a6
29
pkgs/development/python-modules/pyppeteer/default.nix
Normal file
29
pkgs/development/python-modules/pyppeteer/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -5346,6 +5346,8 @@ in {
|
|||||||
|
|
||||||
pypoppler = callPackage ../development/python-modules/pypoppler { };
|
pypoppler = callPackage ../development/python-modules/pypoppler { };
|
||||||
|
|
||||||
|
pyppeteer = callPackage ../development/python-modules/pyppeteer { };
|
||||||
|
|
||||||
pyprind = callPackage ../development/python-modules/pyprind { };
|
pyprind = callPackage ../development/python-modules/pyprind { };
|
||||||
|
|
||||||
pyprof2calltree = callPackage ../development/python-modules/pyprof2calltree { };
|
pyprof2calltree = callPackage ../development/python-modules/pyprof2calltree { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user