My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/esprima/default.nix

40 lines
760 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "esprima";
version = "4.0.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "Kronuz";
repo = "esprima-python";
rev = "v${version}";
sha256 = "WtkPCReXhxyr6pOzE9gsdIeBlLk+nSnbxkS3OowEaHo=";
};
checkInputs = [
pytestCheckHook
];
pytestFlagsArray = [
"test/__main__.py::TestEsprima"
];
pythonImportsCheck = [
"esprima"
];
meta = with lib; {
description = "Python parser for standard-compliant ECMAScript";
homepage = "https://github.com/Kronuz/esprima-python";
license = licenses.bsd2;
maintainers = with maintainers; [ fab ];
};
}