pythonPackages.spake2: 0.7 -> 0.8

This commit is contained in:
Robert Schütz 2018-02-19 13:23:53 +01:00
parent 098c7f3d94
commit d95b811f31
2 changed files with 26 additions and 23 deletions

View File

@ -0,0 +1,25 @@
{ lib, buildPythonPackage, fetchPypi, hkdf, pytest }:
buildPythonPackage rec {
pname = "spake2";
version = "0.8";
src = fetchPypi {
inherit pname version;
sha256 = "c17a614b29ee4126206e22181f70a406c618d3c6c62ca6d6779bce95e9c926f4";
};
checkInputs = [ pytest ];
propagatedBuildInputs = [ hkdf ];
checkPhase = ''
py.test $out
'';
meta = with lib; {
description = "SPAKE2 password-authenticated key exchange library";
homepage = "http://github.com/warner/python-spake2";
license = licenses.mit;
};
}

View File

@ -15889,29 +15889,7 @@ in {
}; };
}; };
spake2 = buildPythonPackage rec { spake2 = callPackage ../development/python-modules/spake2 { };
name = "spake2-${version}";
version = "0.7";
src = pkgs.fetchurl {
url = "mirror://pypi/s/spake2/${name}.tar.gz";
sha256 = "0rmplicbbid41qrvwc1ckyp211ban01ardms5yqqq16ixrc18a6j";
};
buildInputs = with self; [ pytest ];
propagatedBuildInputs = with self; [ hkdf ];
checkPhase = ''
py.test $out
'';
meta = {
description = "SPAKE2 password-authenticated key exchange library";
homepage = "http://github.com/warner/python-spake2";
license = licenses.mit;
};
};
sphfile = callPackage ../development/python-modules/sphfile { }; sphfile = callPackage ../development/python-modules/sphfile { };