Merge pull request #171547 from figsoda/fix-python-lsp-black

python3Packages.python-lsp-black: add missing dependency
This commit is contained in:
figsoda
2022-05-05 17:06:23 -04:00
committed by GitHub
@@ -1,10 +1,11 @@
{ lib
, black
, pythonOlder
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, black
, python-lsp-server
, pythonOlder
, toml
}:
buildPythonPackage rec {
@@ -21,7 +22,7 @@ buildPythonPackage rec {
checkInputs = [ pytestCheckHook ];
propagatedBuildInputs = [ black python-lsp-server ];
propagatedBuildInputs = [ black python-lsp-server toml ];
meta = with lib; {
homepage = "https://github.com/python-lsp/python-lsp-black";