summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-lzo/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/python-lzo/default.nix')
-rw-r--r--pkgs/development/python-modules/python-lzo/default.nix30
1 files changed, 12 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/python-lzo/default.nix b/pkgs/development/python-modules/python-lzo/default.nix
index f0652410828c..ec0d6ff58a8b 100644
--- a/pkgs/development/python-modules/python-lzo/default.nix
+++ b/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";