depot/third_party/nixpkgs/pkgs/development/python-modules/srp/default.nix
Default email 75ca762b89 Project import generated by Copybara.
GitOrigin-RevId: 29b0d4d0b600f8f5dd0b86e3362a33d4181938f9
2021-03-09 11:18:52 +08:00

26 lines
779 B
Nix

{ buildPythonPackage, fetchPypi, six, lib }:
buildPythonPackage rec {
pname = "srp";
version = "1.0.17";
src = fetchPypi {
inherit pname version;
sha256 = "f2e3fed4e5cbfd6b481edc9cdd51a8c39a609eae117210218556004bdc9016b2";
};
propagatedBuildInputs = [ six ];
# Tests ends up with libssl.so cannot load shared
doCheck = false;
meta = with lib; {
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.
'';
homepage = "https://github.com/cocagne/pysrp";
license = licenses.mit;
maintainers = with maintainers; [ jefflabonte ];
};
}