python310Packages.pylint-plugin-utils: 0.6 -> 0.7

main
Fabian Affolter 2 years ago
parent cbe587c735
commit 3e9e7fb9a1
  1. 39
      pkgs/development/python-modules/pylint-plugin-utils/default.nix

@ -1,39 +1,46 @@
{ buildPythonPackage { lib
, buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, isPy3k
, lib
# pythonPackages
, pylint , pylint
, pytestCheckHook
, pythonOlder
, toml , toml
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pylint-plugin-utils"; pname = "pylint-plugin-utils";
version = "0.6"; version = "0.7";
disabled = !isPy3k; format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "PyCQA"; owner = "PyCQA";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "1zapmbczxs1phrwbd0yvpfxhljd2pyv4pi9rwggaq38lcnc325s7"; hash = "sha256-uDsSSUWdlzuQz6umoYLbIotOYNEnLQu041ZZVMRd2ww=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
pylint toml pylint
toml
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"pylint_plugin_utils"
]; ];
checkPhase = '' # https://github.com/PyCQA/pylint-plugin-utils/issues/26
python tests.py doCheck = false;
'';
meta = with lib; { meta = with lib; {
description = "Utilities and helpers for writing Pylint plugins"; description = "Utilities and helpers for writing Pylint plugins";
homepage = "https://github.com/PyCQA/pylint-plugin-utils"; homepage = "https://github.com/PyCQA/pylint-plugin-utils";
license = licenses.gpl2; license = licenses.gpl2Only;
maintainers = with maintainers; [ maintainers = with maintainers; [ kamadorueda ];
kamadorueda
];
}; };
} }

Loading…
Cancel
Save