summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/binary2strings/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/binary2strings/default.nix')
-rw-r--r--pkgs/development/python-modules/binary2strings/default.nix27
1 files changed, 11 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/binary2strings/default.nix b/pkgs/development/python-modules/binary2strings/default.nix
index c122b67886da..3a9937e8fea8 100644
--- a/pkgs/development/python-modules/binary2strings/default.nix
+++ b/pkgs/development/python-modules/binary2strings/default.nix
@@ -1,10 +1,11 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, pybind11
-, pytestCheckHook
-, pythonOlder
-, setuptools
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ pybind11,
+ pytestCheckHook,
+ pythonOlder,
+ setuptools,
}:
buildPythonPackage rec {
@@ -26,17 +27,11 @@ buildPythonPackage rec {
setuptools
];
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
- pythonImportsCheck = [
- "binary2strings"
- ];
+ pythonImportsCheck = [ "binary2strings" ];
- pytestFlagsArray = [
- "tests/test.py"
- ];
+ pytestFlagsArray = [ "tests/test.py" ];
meta = with lib; {
description = "Module to extract Ascii, Utf8, and Unicode strings from binary data";