norminette: init at 3.3.51

This commit is contained in:
Weijia Wang 2022-12-13 23:37:40 +01:00
parent e163fe0984
commit 27fefe56f4
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ lib
, python3Packages
, fetchFromGitHub
}:
python3Packages.buildPythonApplication rec {
pname = "norminette";
version = "3.3.51";
src = fetchFromGitHub {
owner = "42School";
repo = pname;
rev = version;
hash = "sha256-JpWziUKZPOD+AwiYeHR7e0B9l3XKNNp+XQkZEvynKGY=";
};
checkInputs = with python3Packages; [
pytestCheckHook
];
preCheck = ''
export PYTHONPATH=norminette:$PYTHONPATH
'';
meta = with lib; {
description = "Open source norminette to apply 42's norme to C files";
homepage = "https://github.com/42School/norminette";
license = licenses.mit;
maintainers = with maintainers; [ wegank ];
};
}

View file

@ -17684,6 +17684,8 @@ with pkgs;
nmrpflash = callPackage ../development/embedded/nmrpflash { };
norminette = callPackage ../development/tools/norminette { };
nwjs = callPackage ../development/tools/nwjs { };
nwjs-sdk = callPackage ../development/tools/nwjs {