diff options
Diffstat (limited to 'pkgs/development/python-modules/beautifultable/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/beautifultable/default.nix | 29 |
1 files changed, 11 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/beautifultable/default.nix b/pkgs/development/python-modules/beautifultable/default.nix index 97b13414f36b..9b1544ae2bd0 100644 --- a/pkgs/development/python-modules/beautifultable/default.nix +++ b/pkgs/development/python-modules/beautifultable/default.nix @@ -1,9 +1,10 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, wcwidth -, pytestCheckHook -, pythonOlder +{ + lib, + buildPythonPackage, + fetchFromGitHub, + wcwidth, + pytestCheckHook, + pythonOlder, }: buildPythonPackage rec { @@ -20,21 +21,13 @@ buildPythonPackage rec { hash = "sha256-/SReCEvSwiNjBoz/3tGJ9zUNBAag4mLsHlUXwm47zCw="; }; - propagatedBuildInputs = [ - wcwidth - ]; + propagatedBuildInputs = [ wcwidth ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pytestFlagsArray = [ - "test.py" - ]; + pytestFlagsArray = [ "test.py" ]; - pythonImportsCheck = [ - "beautifultable" - ]; + pythonImportsCheck = [ "beautifultable" ]; meta = with lib; { description = "Python package for printing visually appealing tables"; |
