about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ci-info/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/ci-info/default.nix')
-rw-r--r--pkgs/development/python-modules/ci-info/default.nix16
1 files changed, 13 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/ci-info/default.nix b/pkgs/development/python-modules/ci-info/default.nix
index 8c2fc9c4ff3b5..4c603940a1440 100644
--- a/pkgs/development/python-modules/ci-info/default.nix
+++ b/pkgs/development/python-modules/ci-info/default.nix
@@ -1,4 +1,11 @@
-{ lib, buildPythonPackage, isPy27, fetchPypi, pytest, pytestCheckHook }:
+{
+  lib,
+  buildPythonPackage,
+  isPy27,
+  fetchPypi,
+  pytest,
+  pytestCheckHook,
+}:
 
 buildPythonPackage rec {
   version = "0.3.0";
@@ -12,9 +19,12 @@ buildPythonPackage rec {
     hash = "sha256-H9UMvUAfKa3/7rGLBIniMtFqwadFisa8MW3qtq5TX7A=";
   };
 
-  nativeCheckInputs = [ pytest pytestCheckHook ];
+  nativeCheckInputs = [
+    pytest
+    pytestCheckHook
+  ];
 
-  doCheck = false;  # both tests access network
+  doCheck = false; # both tests access network
 
   pythonImportsCheck = [ "ci_info" ];