diff options
Diffstat (limited to 'pkgs/development/python-modules/enrich/default.nix')
-rw-r--r-- | pkgs/development/python-modules/enrich/default.nix | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/enrich/default.nix b/pkgs/development/python-modules/enrich/default.nix index 71e1cd1b2e59..bccb74b2f837 100644 --- a/pkgs/development/python-modules/enrich/default.nix +++ b/pkgs/development/python-modules/enrich/default.nix @@ -1,4 +1,12 @@ -{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, setuptools-scm, rich, pytest-mock }: +{ + lib, + buildPythonPackage, + fetchPypi, + pytestCheckHook, + setuptools-scm, + rich, + pytest-mock, +}: buildPythonPackage rec { pname = "enrich"; @@ -14,7 +22,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ rich ]; - nativeCheckInputs = [ pytestCheckHook pytest-mock ]; + nativeCheckInputs = [ + pytestCheckHook + pytest-mock + ]; disabledTests = [ # console output order is racy @@ -27,6 +38,6 @@ buildPythonPackage rec { description = "Enrich adds few missing features to the wonderful rich library"; homepage = "https://github.com/pycontribs/enrich"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } |