about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aspectlib/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/aspectlib/default.nix')
-rw-r--r--pkgs/development/python-modules/aspectlib/default.nix33
1 files changed, 14 insertions, 19 deletions
diff --git a/pkgs/development/python-modules/aspectlib/default.nix b/pkgs/development/python-modules/aspectlib/default.nix
index 3f4a87e0a334e..752484f21374a 100644
--- a/pkgs/development/python-modules/aspectlib/default.nix
+++ b/pkgs/development/python-modules/aspectlib/default.nix
@@ -1,13 +1,14 @@
-{ lib
-, buildPythonPackage
-, pythonOlder
-, fetchPypi
-, fetchpatch
-, setuptools
-, fields
-, process-tests
-, pytestCheckHook
-, tornado
+{
+  lib,
+  buildPythonPackage,
+  pythonOlder,
+  fetchPypi,
+  fetchpatch,
+  setuptools,
+  fields,
+  process-tests,
+  pytestCheckHook,
+  tornado,
 }:
 
 buildPythonPackage rec {
@@ -32,13 +33,9 @@ buildPythonPackage rec {
     })
   ];
 
-  nativeBuildInputs = [
-    setuptools
-  ];
+  nativeBuildInputs = [ setuptools ];
 
-  propagatedBuildInputs = [
-    fields
-  ];
+  propagatedBuildInputs = [ fields ];
 
   pythonImportsCheck = [
     "aspectlib"
@@ -53,9 +50,7 @@ buildPythonPackage rec {
     tornado
   ];
 
-  pytestFlagsArray = [
-    "-W ignore::DeprecationWarning"
-  ];
+  pytestFlagsArray = [ "-W ignore::DeprecationWarning" ];
 
   __darwinAllowLocalNetworking = true;