about summary refs log tree commit diff
path: root/pkgs/development/python-modules/bacpypes/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/bacpypes/default.nix')
-rw-r--r--pkgs/development/python-modules/bacpypes/default.nix27
1 files changed, 11 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/bacpypes/default.nix b/pkgs/development/python-modules/bacpypes/default.nix
index 9a30c1bbd6a94..8819f55e0a668 100644
--- a/pkgs/development/python-modules/bacpypes/default.nix
+++ b/pkgs/development/python-modules/bacpypes/default.nix
@@ -1,10 +1,11 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, wheel
-, pytestCheckHook
-, pythonAtLeast
-, pythonOlder
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  wheel,
+  pytestCheckHook,
+  pythonAtLeast,
+  pythonOlder,
 }:
 
 buildPythonPackage rec {
@@ -28,22 +29,16 @@ buildPythonPackage rec {
       --replace "(3, 8): 'py34'," "(3, 8): 'py34', (3, 9): 'py34', (3, 10): 'py34', (3, 11): 'py34', (3, 12): 'py34',"
   '';
 
-  propagatedBuildInputs = [
-    wheel
-  ];
+  propagatedBuildInputs = [ wheel ];
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
   disabledTests = [
     # Test fails with a an error: AssertionError: assert 30 == 31
     "test_recurring_task_5"
   ];
 
-  pythonImportsCheck = [
-    "bacpypes"
-  ];
+  pythonImportsCheck = [ "bacpypes" ];
 
   meta = with lib; {
     description = "Module for the BACnet application layer and network layer";