nbqa: format with nixfmt

This commit is contained in:
Gaetan Lepage 2024-08-27 17:34:25 +02:00
parent 576e710170
commit 7b92e73b2f

View File

@ -1,11 +1,16 @@
{ black
, blacken-docs
, fetchFromGitHub
, lib
, python3
, ruff
, testers
, nbqa
{
lib,
python3,
fetchFromGitHub,
# optional-dependencies
black,
blacken-docs,
ruff,
# passthru
testers,
nbqa,
}:
python3.pkgs.buildPythonApplication rec {
pname = "nbqa";
@ -35,7 +40,8 @@ python3.pkgs.buildPythonApplication rec {
ruff = [ ruff ];
};
dependencies = with python3.pkgs;
dependencies =
with python3.pkgs;
[
autopep8
ipython