about summary refs log tree commit diff
path: root/pkgs/development/python-modules/srp/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/srp/default.nix')
-rw-r--r--pkgs/development/python-modules/srp/default.nix27
1 files changed, 12 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/srp/default.nix b/pkgs/development/python-modules/srp/default.nix
index 9527131231340..6ac658f7ef794 100644
--- a/pkgs/development/python-modules/srp/default.nix
+++ b/pkgs/development/python-modules/srp/default.nix
@@ -1,38 +1,35 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, six
-, pythonOlder
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  six,
+  pythonOlder,
 }:
 
 buildPythonPackage rec {
   pname = "srp";
-  version = "1.0.20";
+  version = "1.0.21";
   format = "setuptools";
 
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-LbRTvc4mue6tNnp7V4MHTvgOhIK/MMAUCnuJg2oFRwc=";
+    hash = "sha256-hmgTvPUhGJoVY+bKMRK29U/fclpBCi2+u28NhLgqHx0=";
   };
 
-  propagatedBuildInputs = [
-    six
-  ];
+  propagatedBuildInputs = [ six ];
 
   # Tests ends up with libssl.so cannot load shared
   doCheck = false;
 
-  pythonImportsCheck = [
-    "srp"
-  ];
+  pythonImportsCheck = [ "srp" ];
 
   meta = with lib; {
     description = "Implementation of the Secure Remote Password protocol (SRP)";
     longDescription = ''
-     This package provides an implementation of the Secure Remote Password protocol (SRP).
-     SRP is a cryptographically strong authentication protocol for password-based, mutual authentication over an insecure network connection.
+      This package provides an implementation of the Secure Remote Password protocol (SRP).
+      SRP is a cryptographically strong authentication protocol for password-based, mutual authentication over an insecure network connection.
     '';
     homepage = "https://github.com/cocagne/pysrp";
     license = licenses.mit;