about summary refs log tree commit diff
path: root/pkgs/development/python-modules/iwlib/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/iwlib/default.nix')
-rw-r--r--pkgs/development/python-modules/iwlib/default.nix15
1 files changed, 12 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/iwlib/default.nix b/pkgs/development/python-modules/iwlib/default.nix
index 0a881ef1f370..08348a6de3ab 100644
--- a/pkgs/development/python-modules/iwlib/default.nix
+++ b/pkgs/development/python-modules/iwlib/default.nix
@@ -1,4 +1,11 @@
-{ lib, buildPythonPackage, fetchPypi, wirelesstools, cffi, pytest }:
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  wirelesstools,
+  cffi,
+  pytest,
+}:
 buildPythonPackage rec {
   pname = "iwlib";
   version = "1.7.0";
@@ -9,11 +16,13 @@ buildPythonPackage rec {
     sha256 = "a805f6597a70ee3001aba8f039fb7b2dcb75dc15c4e7852f5594fd6379196da1";
   };
 
-  propagatedBuildInputs = [ wirelesstools cffi ];
+  propagatedBuildInputs = [
+    wirelesstools
+    cffi
+  ];
   nativeBuildInputs = [ pytest ];
   pythonImportsCheck = [ "iwlib" ];
 
-  doCheck = true;
   checkInputs = [ pytest ];
   checkPhase = "python iwlib/_iwlib_build.py; pytest -v";