Merge pull request #136277 from FabianGD/init/pylint-exit

This commit is contained in:
Sandro 2021-10-29 15:34:00 +02:00 committed by GitHub
commit 9a8aa947fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ lib, fetchFromGitHub, python3Packages }:
with python3Packages; buildPythonApplication rec {
pname = "pylint-exit";
version = "1.2.0";
src = fetchFromGitHub {
owner = "jongracecox";
repo = pname;
rev = "v${version}";
sha256 = "0hwfny48g394visa3xd15425fsw596r3lhkfhswpjrdk2mnk3cny";
};
# Converting the shebang manually as it is not picked up by patchShebangs
postPatch = ''
substituteInPlace pylint_exit.py \
--replace "#!/usr/local/bin/python" "#!${python.interpreter}"
'';
# See https://github.com/jongracecox/pylint-exit/pull/7
buildInputs = [ m2r ];
# setup.py reads its version from the TRAVIS_TAG environment variable
TRAVIS_TAG = version;
checkPhase = ''
${python.interpreter} -m doctest pylint_exit.py
'';
meta = with lib; {
description = "Utility to handle pylint exit codes in an OS-friendly way";
license = licenses.mit;
homepage = "https://github.com/jongracecox/pylint-exit";
maintainers = [ maintainers.fabiangd ];
};
}

View File

@ -14979,6 +14979,8 @@ with pkgs;
pycritty = with python3Packages; toPythonApplication pycritty;
pylint-exit = callPackage ../development/tools/pylint-exit { };
qtcreator = libsForQt5.callPackage ../development/tools/qtcreator {
inherit (linuxPackages) perf;
};