about summary refs log tree commit diff
path: root/pkgs/development/python-modules/bcrypt/3.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/bcrypt/3.nix')
-rw-r--r--pkgs/development/python-modules/bcrypt/3.nix34
1 files changed, 13 insertions, 21 deletions
diff --git a/pkgs/development/python-modules/bcrypt/3.nix b/pkgs/development/python-modules/bcrypt/3.nix
index fec467f983cc5..7d0f4235277c2 100644
--- a/pkgs/development/python-modules/bcrypt/3.nix
+++ b/pkgs/development/python-modules/bcrypt/3.nix
@@ -1,12 +1,12 @@
-{ lib
-, buildPythonPackage
-, setuptools
-, isPyPy
-, fetchPypi
-, pythonOlder
-, cffi
-, pytestCheckHook
-, six
+{
+  lib,
+  buildPythonPackage,
+  setuptools,
+  fetchPypi,
+  pythonOlder,
+  cffi,
+  pytestCheckHook,
+  six,
 }:
 
 buildPythonPackage rec {
@@ -21,26 +21,18 @@ buildPythonPackage rec {
     hash = "sha256-QzxBDCF3BXcF2iqfLNAd0VdJOyp6wUyFk6FrPatra/s=";
   };
 
-  nativeBuildInputs = [
-    setuptools
-  ];
+  nativeBuildInputs = [ setuptools ];
 
   propagatedBuildInputs = [
     six
     cffi
   ];
 
-  propagatedNativeBuildInputs = [
-    cffi
-  ];
+  propagatedNativeBuildInputs = [ cffi ];
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
-  pythonImportsCheck = [
-    "bcrypt"
-  ];
+  pythonImportsCheck = [ "bcrypt" ];
 
   meta = with lib; {
     description = "Modern password hashing for your software and your servers";