infra/tests/support/puppeteer-socket/puppeteer-socket.nix
b12f b30dc0f7bd
Some checks failed
Flake checks / Check (pull_request) Failing after 1m43s
test: puppeteering puppeteer from host python testScript
2024-08-26 19:00:57 +02:00

12 lines
228 B
Nix

{
buildNpmPackage,
nodejs,
}:
buildNpmPackage rec {
src = ./.;
name = "puppeteer-socket";
nativeBuildInputs = [ nodejs ];
npmDepsHash = "sha256-d+mbHdwt9V5JIBUw/2NyTMBlZ3D5UNE8TpVXJm8rcnU=";
dontNpmBuild = true;
}