Commit 798c76ea authored by Bjørn Forsman's avatar Bjørn Forsman
Browse files

python3Packages.autopep8: replace toml with tomli

Looks like this change is needed to avoid breaking a part of autopep8:

* https://github.com/hhatto/autopep8/commit/d0836947df66a052a1d18925a64feb0374598f02
* https://github.com/hhatto/autopep8/releases/tag/v1.7.1

Suggested-by: @SFrijters
parent 83c19c79
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
, buildPythonPackage
, pycodestyle
, glibcLocales
, toml
, tomli
, pytestCheckHook
}:

@@ -16,7 +16,7 @@ buildPythonPackage rec {
    sha256 = "sha256-8AWCIOTMDvYSGZb8jsHDLwc15Ea+I8Th9pLeC/IxdN0=";
  };

  propagatedBuildInputs = [ pycodestyle toml ];
  propagatedBuildInputs = [ pycodestyle tomli ];

  checkInputs = [
    glibcLocales