mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
Merge pull request #166820 from r-ryantm/auto-update/python3.10-srp
python310Packages.srp: 1.0.18 -> 1.0.19
This commit is contained in:
commit
0e29650898
@ -1,20 +1,35 @@
|
|||||||
{ buildPythonPackage, fetchPypi, six, lib }:
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, six
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "srp";
|
pname = "srp";
|
||||||
version = "1.0.18";
|
version = "1.0.19";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "1582317ccd383dc39d54f223424c588254d73d1cfb2c5c24d945e018ec9516bb";
|
hash = "sha256-SOZT6MP1kJCbpAcwbrLoRgosfR+GxWvOWc9Cr1T/XSo=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ six ];
|
propagatedBuildInputs = [
|
||||||
|
six
|
||||||
|
];
|
||||||
|
|
||||||
# Tests ends up with libssl.so cannot load shared
|
# Tests ends up with libssl.so cannot load shared
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"srp"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
description = "Implementation of the Secure Remote Password protocol (SRP)";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
This package provides an implementation of the Secure Remote Password protocol (SRP).
|
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.
|
SRP is a cryptographically strong authentication protocol for password-based, mutual authentication over an insecure network connection.
|
||||||
|
Loading…
Reference in New Issue
Block a user