depot/third_party/nixpkgs/pkgs/by-name/oe/oelint-adv/package.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

40 lines
913 B
Nix

{ lib
, nix-update-script
, python3
, fetchPypi
}:
python3.pkgs.buildPythonApplication rec {
pname = "oelint-adv";
version = "3.26.12";
format = "setuptools";
src = fetchPypi {
inherit version;
pname = "oelint_adv";
hash = "sha256-pemFy+MTBE9T/dY93rErlvWCru1TLR7X25/1+GNAFdw=";
};
propagatedBuildInputs = with python3.pkgs; [
anytree
colorama
oelint-parser
urllib3
];
pythonRelaxDeps = [ "urllib3" ];
pythonImportsCheck = [ "oelint_adv" ];
# Fail to run inside the code the build.
doCheck = false;
passthru.updateScript = nix-update-script { };
meta = with lib; {
description = "Advanced bitbake-recipe linter";
homepage = "https://github.com/priv-kweihmann/oelint-adv";
changelog = "https://github.com/priv-kweihmann/oelint-adv/releases/tag/v${version}";
license = licenses.bsd2;
maintainers = with maintainers; [ otavio ];
};
}