biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / pylint-exit / default.nix
blob6bd5591b57e92fc23673eae3bd26f2ae675eeced
1 { lib, fetchFromGitHub, python3Packages }:
3 with python3Packages; buildPythonApplication rec {
4   pname = "pylint-exit";
5   version = "1.2.0";
7   src = fetchFromGitHub {
8     owner = "jongracecox";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "0hwfny48g394visa3xd15425fsw596r3lhkfhswpjrdk2mnk3cny";
12   };
14   # Converting the shebang manually as it is not picked up by patchShebangs
15   postPatch = ''
16     substituteInPlace pylint_exit.py \
17       --replace "#!/usr/local/bin/python" "#!${python.interpreter}"
18   '';
20   # See https://github.com/jongracecox/pylint-exit/pull/7
21   buildInputs = [ m2r ];
23   # setup.py reads its version from the TRAVIS_TAG environment variable
24   TRAVIS_TAG = version;
26   checkPhase = ''
27     ${python.interpreter} -m doctest pylint_exit.py
28   '';
30   meta = with lib; {
31     description = "Utility to handle pylint exit codes in an OS-friendly way";
32     license = licenses.mit;
33     homepage = "https://github.com/jongracecox/pylint-exit";
34     maintainers = [ maintainers.fabiangd ];
35   };