nixpkgs/pkgs/by-name/py/pylint-exit/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

37 lines
1018 B
Nix

{ 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 ];
};
}