depot/third_party/nixpkgs/pkgs/development/web/playwright-test/wrapped.nix

30 lines
771 B
Nix
Raw Normal View History

{ lib
, callPackage
, buildNpmPackage
, fetchurl
, python3
, playwright-driver
, makeWrapper
}:
let
driver = playwright-driver;
browsers = playwright-driver.browsers;
# nodeDependencies / package / shell
playwright-test-raw = (callPackage ./default.nix { })."@playwright/test-${driver.version}";
playwright-test = playwright-test-raw.overrideAttrs (oa: {
nativeBuildInputs = oa.nativeBuildInputs or [ ] ++ [
makeWrapper
];
postInstall = ''
# you need to set both the path and version else playwright looks into the wrong one
wrapProgram $out/bin/playwright \
--set-default PLAYWRIGHT_BROWSERS_PATH "${browsers}" \
--prefix NODE_PATH : ${placeholder "out"}/lib/node_modules
'';
});
in
playwright-test