11 buildPythonPackage rec {
12 pname = "python-lsp-black";
14 disabled = pythonOlder "3.6";
16 src = fetchFromGitHub {
18 repo = "python-lsp-black";
20 sha256 = "sha256-qNA6Bj1VI0YEtRuvcMQZGWakQNNrJ2PqhozrLmQHPAg=";
23 checkInputs = [ pytestCheckHook ];
25 propagatedBuildInputs = [ black python-lsp-server toml ];
28 homepage = "https://github.com/python-lsp/python-lsp-black";
29 description = "Black plugin for the Python LSP Server";
30 license = licenses.mit;
31 maintainers = with maintainers; [ cpcloud ];