2021-01-25 00:26:54 -08:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
2018-11-22 14:15:37 -08:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "curve25519-donna";
|
|
|
|
version = "1.3";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "1w0vkjyh4ki9n98lr2hg09f1lr1g3pz48kshrlic01ba6pasj60q";
|
|
|
|
};
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2018-11-22 14:15:37 -08:00
|
|
|
description = "Python wrapper for the portable curve25519-donna implementation";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://code.google.com/p/curve25519-donna/";
|
2018-11-22 14:15:37 -08:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ elseym ];
|
|
|
|
};
|
|
|
|
}
|