mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 05:44:13 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
23 lines
567 B
Nix
23 lines
567 B
Nix
{ lib, buildPythonPackage, fetchPypi, pylint }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "setuptools-lint";
|
|
version = "0.6.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "16a1ac5n7k7sx15cnk03gw3fmslab3a7m74dc45rgpldgiff3577";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pylint ];
|
|
|
|
meta = with lib; {
|
|
description = "Package to expose pylint as a lint command into setup.py";
|
|
homepage = "https://github.com/johnnoone/setuptools-pylint";
|
|
license = licenses.bsdOriginal;
|
|
maintainers = with maintainers; [ nickhu ];
|
|
};
|
|
}
|
|
|