mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 18:44:07 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
39 lines
760 B
Nix
39 lines
760 B
Nix
{ lib
|
|
, astunparse
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, isPy3k
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "frilouz";
|
|
version = "0.0.2";
|
|
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 = with lib; {
|
|
homepage = "https://github.com/QuantStack/frilouz";
|
|
description = "Python AST parser adapter with partial error recovery";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ cpcloud ];
|
|
};
|
|
}
|