summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/blessed/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/blessed/default.nix')
-rw-r--r--pkgs/development/python-modules/blessed/default.nix22
1 files changed, 18 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/blessed/default.nix b/pkgs/development/python-modules/blessed/default.nix
index 70762d0c524a..e78b9b097524 100644
--- a/pkgs/development/python-modules/blessed/default.nix
+++ b/pkgs/development/python-modules/blessed/default.nix
@@ -1,5 +1,12 @@
-{ lib, buildPythonPackage, fetchPypi, six
-, wcwidth, pytest, mock, glibcLocales
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ six,
+ wcwidth,
+ pytest,
+ mock,
+ glibcLocales,
}:
buildPythonPackage rec {
@@ -12,7 +19,11 @@ buildPythonPackage rec {
hash = "sha256-LN1n+HRuBI8A30eiiA9NasvNs5kDG2BONLqPcdV4doA=";
};
- nativeCheckInputs = [ pytest mock glibcLocales ];
+ nativeCheckInputs = [
+ pytest
+ mock
+ glibcLocales
+ ];
# Default tox.ini parameters not needed
checkPhase = ''
@@ -20,7 +31,10 @@ buildPythonPackage rec {
pytest
'';
- propagatedBuildInputs = [ wcwidth six ];
+ propagatedBuildInputs = [
+ wcwidth
+ six
+ ];
meta = with lib; {
homepage = "https://github.com/jquast/blessed";