Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / srp / default.nix
blob31f77b0ee080a3964bb46c256579048b524ffad1
1 { buildPythonPackage, fetchPypi, six, lib }:
3 buildPythonPackage rec {
4   pname = "srp";
5   version = "1.0.17";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "f2e3fed4e5cbfd6b481edc9cdd51a8c39a609eae117210218556004bdc9016b2";
10   };
12   propagatedBuildInputs = [ six ];
14   # Tests ends up with libssl.so cannot load shared
15   doCheck = false;
17   meta = with lib; {
18     longDescription = ''
19      This package provides an implementation of the Secure Remote Password protocol (SRP).
20      SRP is a cryptographically strong authentication protocol for password-based, mutual authentication over an insecure network connection.
21     '';
22     homepage = "https://github.com/cocagne/pysrp";
23     license = licenses.mit;
24     maintainers = with maintainers; [ jefflabonte ];
25   };