blob: 15e74f049a82d0dc1bd632b9172e62fdb75b7eea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
flake8,
python-lsp-server,
}:
buildPythonPackage rec {
pname = "pyls-flake8";
version = "0.4.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "emanspeaks";
repo = "pyls-flake8";
rev = "v${version}";
sha256 = "14wkmwh8mqr826vdzxhvhdwrnx2akzmnbv3ar391qs4imwqfjx3l";
};
propagatedBuildInputs = [
flake8
python-lsp-server
];
meta = {
homepage = "https://github.com/emanspeaks/pyls-flake8";
description = "Flake8 plugin for the Python LSP Server";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ cpcloud ];
};
}
|