about summary refs log tree commit diff
path: root/pkgs/development/python-modules/argon2-cffi/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/argon2-cffi/default.nix')
-rw-r--r--pkgs/development/python-modules/argon2-cffi/default.nix34
1 files changed, 21 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/argon2-cffi/default.nix b/pkgs/development/python-modules/argon2-cffi/default.nix
index da9022c93f192..2ab26082ad16c 100644
--- a/pkgs/development/python-modules/argon2-cffi/default.nix
+++ b/pkgs/development/python-modules/argon2-cffi/default.nix
@@ -1,12 +1,13 @@
-{ hypothesis
-, pytestCheckHook
-, buildPythonPackage
-, fetchPypi
-, lib
-, hatchling
-, hatch-vcs
-, hatch-fancy-pypi-readme
-, argon2-cffi-bindings
+{
+  hypothesis,
+  pytestCheckHook,
+  buildPythonPackage,
+  fetchPypi,
+  lib,
+  hatchling,
+  hatch-vcs,
+  hatch-fancy-pypi-readme,
+  argon2-cffi-bindings,
 }:
 
 buildPythonPackage rec {
@@ -20,17 +21,24 @@ buildPythonPackage rec {
     hash = "sha256-h5w+eaJynOdo67fTbUYJ46eKTKLsOp8SKGygV+PQ2wg=";
   };
 
-  nativeBuildInputs = [ hatchling hatch-vcs hatch-fancy-pypi-readme ];
+  nativeBuildInputs = [
+    hatchling
+    hatch-vcs
+    hatch-fancy-pypi-readme
+  ];
 
   propagatedBuildInputs = [ argon2-cffi-bindings ];
 
-  nativeCheckInputs = [ hypothesis pytestCheckHook ];
+  nativeCheckInputs = [
+    hypothesis
+    pytestCheckHook
+  ];
 
   pythonImportsCheck = [ "argon2" ];
 
   meta = with lib; {
     description = "Secure Password Hashes for Python";
-    homepage    = "https://argon2-cffi.readthedocs.io/";
-    license     = licenses.mit;
+    homepage = "https://argon2-cffi.readthedocs.io/";
+    license = licenses.mit;
   };
 }