mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
pythonPackages.srp: init at 1.0.15
This commit is contained in:
parent
2f0614bdcb
commit
843a8481cd
26
pkgs/development/python-modules/srp/default.nix
Normal file
26
pkgs/development/python-modules/srp/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user