30 lines
689 B
Nix
30 lines
689 B
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, fetchFromGitHub
|
||
|
, flake8
|
||
|
, python-lsp-server
|
||
|
, pythonOlder
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "pyls-flake8";
|
||
|
version = "0.4.0";
|
||
|
disabled = pythonOlder "3.6";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "emanspeaks";
|
||
|
repo = "pyls-flake8";
|
||
|
rev = "3df8606ad821100e64743f457c77c20170bde722";
|
||
|
sha256 = "14wkmwh8mqr826vdzxhvhdwrnx2akzmnbv3ar391qs4imwqfjx3l";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ flake8 python-lsp-server ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://github.com/emanspeaks/pyls-flake8";
|
||
|
description = "A Flake8 plugin for the Python LSP Server.";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ cpcloud ];
|
||
|
};
|
||
|
}
|