Unverified Commit 1da045b2 authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

python3Packages.pylint-odoo: init at 9.3.3 (#295564)

parents 38bd0b19 d05ab5da
Loading
Loading
Loading
Loading
+44 −0
Original line number Diff line number Diff line
{
  buildPythonPackage,
  fetchFromGitHub,
  lib,
  pylint-plugin-utils,
  pytestCheckHook,
  setuptools,
}:
buildPythonPackage rec {
  pname = "pylint-odoo";
  version = "9.3.3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "OCA";
    repo = "pylint-odoo";
    tag = "v${version}";
    hash = "sha256-HPai1HQlfHJUHLqEYn4U6qdupJLLrynwtfm7Q8IbRps=";
  };

  pythonRelaxDeps = [
    "pylint-plugin-utils"
    "pylint"
  ];

  build-system = [ setuptools ];

  dependencies = [
    pylint-plugin-utils
  ];

  pythonImportsCheck = [ "pylint_odoo" ];

  BUILD_README = true; # Enables more tests

  nativeCheckInputs = [ pytestCheckHook ];

  meta = {
    description = "Odoo plugin for Pylint";
    homepage = "https://github.com/OCA/pylint-odoo";
    license = lib.licenses.agpl3Only;
    maintainers = with lib.maintainers; [ yajo ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -12623,6 +12623,8 @@ self: super: with self; {
  pylint-flask = callPackage ../development/python-modules/pylint-flask { };
  pylint-odoo = callPackage ../development/python-modules/pylint-odoo { };
  pylint-plugin-utils = callPackage ../development/python-modules/pylint-plugin-utils { };
  pylint-venv = callPackage ../development/python-modules/pylint-venv { };