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

python3Packages.python-lsp-black: add missing dependency
main
figsoda 2 years ago committed by GitHub
commit c2026fa2e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      pkgs/development/python-modules/python-lsp-black/default.nix

@ -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";

Loading…
Cancel
Save