pythonPackages.srp: init at 1.0.15

This commit is contained in:
Jeff Labonte 2020-02-10 22:50:24 -05:00 committed by Jon
parent 2f0614bdcb
commit 843a8481cd
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ stdenv, buildPythonPackage, fetchPypi, six, lib }:
buildPythonPackage rec {
pname = "srp";
version = "1.0.15";
src = fetchPypi {
inherit pname version;
sha256 = "d5b8ed6dc7d3ae2845a16590ef37763bbf15d6049848b85a8c96dfb8a83c984a";
};
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 ];
};
}

View file

@ -2441,6 +2441,8 @@ in {
digital-ocean = callPackage ../development/python-modules/digitalocean { };
digi-xbee = callPackage ../development/python-modules/digi-xbee { };
leather = callPackage ../development/python-modules/leather { };
libais = callPackage ../development/python-modules/libais { };
@ -6948,8 +6950,12 @@ in {
importlib-resources = callPackage ../development/python-modules/importlib-resources {};
srp = callPackage ../development/python-modules/srp { };
srptools = callPackage ../development/python-modules/srptools { };
srp = callPackage ../development/python-modules/srp { };
curve25519-donna = callPackage ../development/python-modules/curve25519-donna { };
pyatv = callPackage ../development/python-modules/pyatv { };