summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pyct/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pyct/default.nix')
-rw-r--r--pkgs/development/python-modules/pyct/default.nix25
1 files changed, 11 insertions, 14 deletions
diff --git a/pkgs/development/python-modules/pyct/default.nix b/pkgs/development/python-modules/pyct/default.nix
index 7f8f85b1b650..4bc528b64f95 100644
--- a/pkgs/development/python-modules/pyct/default.nix
+++ b/pkgs/development/python-modules/pyct/default.nix
@@ -1,11 +1,12 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, param
-, pytestCheckHook
-, pythonAtLeast
-, pyyaml
-, requests
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ param,
+ pytestCheckHook,
+ pythonAtLeast,
+ pyyaml,
+ requests,
}:
buildPythonPackage rec {
@@ -26,13 +27,9 @@ buildPythonPackage rec {
requests
];
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
- pythonImportsCheck = [
- "pyct"
- ];
+ pythonImportsCheck = [ "pyct" ];
meta = with lib; {
description = "ClI for Python common tasks for users";