2022-08-21 13:32:41 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, buildPythonPackage
|
|
|
|
, pytestCheckHook
|
|
|
|
, js2py
|
|
|
|
}:
|
|
|
|
|
|
|
|
let pyjsparser = buildPythonPackage rec {
|
|
|
|
pname = "pyjsparser";
|
|
|
|
version = "2.7.1";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "PiotrDabkowski";
|
|
|
|
repo = pname;
|
|
|
|
rev = "5465d037b30e334cb0997f2315ec1e451b8ad4c1";
|
2023-03-15 16:39:30 +00:00
|
|
|
hash = "sha256-Hqay9/qsjUfe62U7Q79l0Yy01L2Bnj5xNs6427k3Br8=";
|
2022-08-21 13:32:41 +00:00
|
|
|
};
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [ pytestCheckHook js2py ];
|
2022-08-21 13:32:41 +00:00
|
|
|
|
|
|
|
# escape infinite recursion with js2py
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
passthru.tests = {
|
|
|
|
check = pyjsparser.overridePythonAttrs (_: { doCheck = true; });
|
|
|
|
};
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "pyjsparser" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Fast javascript parser (based on esprima.js)";
|
|
|
|
homepage = "https://github.com/PiotrDabkowski/pyjsparser";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ onny ];
|
|
|
|
};
|
|
|
|
}; in pyjsparser
|