Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildPythonPackage 2, fetchFromGitHub 3, isPy3k 4, lib 5 6# pythonPackages 7, pylint-plugin-utils 8}: 9 10buildPythonPackage rec { 11 pname = "pylint-celery"; 12 version = "0.3"; 13 disabled = !isPy3k; 14 15 src = fetchFromGitHub { 16 owner = "PyCQA"; 17 repo = pname; 18 rev = version; 19 sha256 = "05fhwraq12c2724pn4py1bjzy5rmsrb1x68zck73nlp5icba6yap"; 20 }; 21 22 propagatedBuildInputs = [ 23 pylint-plugin-utils 24 ]; 25 26 # Testing requires a very old version of pylint, incompatible with other dependencies 27 doCheck = false; 28 29 meta = with lib; { 30 description = "A Pylint plugin to analyze Celery applications"; 31 homepage = "https://github.com/PyCQA/pylint-celery"; 32 license = licenses.gpl2; 33 maintainers = with maintainers; [ 34 kamadorueda 35 ]; 36 }; 37}