biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pylint-celery / default.nix
blob99ffa65d6cd70437458c03f8eede093ec80ee54e
2   buildPythonPackage,
3   fetchFromGitHub,
4   isPy3k,
5   lib,
7   # pythonPackages
8   pylint-plugin-utils,
9 }:
11 buildPythonPackage rec {
12   pname = "pylint-celery";
13   version = "0.3";
14   format = "setuptools";
15   disabled = !isPy3k;
17   src = fetchFromGitHub {
18     owner = "PyCQA";
19     repo = pname;
20     rev = version;
21     sha256 = "05fhwraq12c2724pn4py1bjzy5rmsrb1x68zck73nlp5icba6yap";
22   };
24   propagatedBuildInputs = [ pylint-plugin-utils ];
26   # Testing requires a very old version of pylint, incompatible with other dependencies
27   doCheck = false;
29   meta = with lib; {
30     description = "Pylint plugin to analyze Celery applications";
31     homepage = "https://github.com/PyCQA/pylint-celery";
32     license = licenses.gpl2;
33     maintainers = with maintainers; [ kamadorueda ];
34   };