567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
41 lines
790 B
Nix
41 lines
790 B
Nix
{
|
|
lib,
|
|
astunparse,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
isPy3k,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "frilouz";
|
|
version = "0.0.2";
|
|
format = "setuptools";
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "QuantStack";
|
|
repo = "frilouz";
|
|
rev = version;
|
|
sha256 = "0w2qzi4zb10r9iw64151ay01vf0yzyhh0bsjkx1apxp8fs15cdiw";
|
|
};
|
|
|
|
nativeCheckInputs = [ astunparse ];
|
|
|
|
preCheck = "cd test";
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
python -m unittest
|
|
runHook postCheck
|
|
'';
|
|
|
|
pythonImportsCheck = [ "frilouz" ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/QuantStack/frilouz";
|
|
description = "Python AST parser adapter with partial error recovery";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ cpcloud ];
|
|
};
|
|
}
|