about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/python-lzo
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/python-lzo')
-rw-r--r--nixpkgs/pkgs/development/python-modules/python-lzo/default.nix30
1 files changed, 12 insertions, 18 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/python-lzo/default.nix b/nixpkgs/pkgs/development/python-modules/python-lzo/default.nix
index f0652410828c..ec0d6ff58a8b 100644
--- a/nixpkgs/pkgs/development/python-modules/python-lzo/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/python-lzo/default.nix
@@ -1,11 +1,12 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, lzo
-, pytestCheckHook
-, pythonOlder
-, setuptools
-, wheel
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  lzo,
+  pytestCheckHook,
+  pythonOlder,
+  setuptools,
+  wheel,
 }:
 
 buildPythonPackage rec {
@@ -22,23 +23,16 @@ buildPythonPackage rec {
     hash = "sha256-iXAvOCzHPvNERMkE5y4QTHi4ZieW1wrYWYScs7zyb2c=";
   };
 
-
   nativeBuildInputs = [
     setuptools
     wheel
   ];
 
-  buildInputs = [
-    lzo
-  ];
+  buildInputs = [ lzo ];
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
-  pythonImportsCheck = [
-    "lzo"
-  ];
+  pythonImportsCheck = [ "lzo" ];
 
   meta = with lib; {
     description = "Python bindings for the LZO data compression library";