1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-21 17:01:10 +03:00
nixpkgs/pkgs/development/python-modules/srp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
779 B
Nix
Raw Normal View History

{ buildPythonPackage, fetchPypi, six, lib }:
2020-02-10 22:50:24 -05:00
buildPythonPackage rec {
pname = "srp";
2021-06-18 23:47:39 +02:00
version = "1.0.18";
2020-02-10 22:50:24 -05:00
src = fetchPypi {
inherit pname version;
2021-06-18 23:47:39 +02:00
sha256 = "1582317ccd383dc39d54f223424c588254d73d1cfb2c5c24d945e018ec9516bb";
2020-02-10 22:50:24 -05:00
};
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 ];
};
}