1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "curve25519-donna";
5 version = "1.3";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "1w0vkjyh4ki9n98lr2hg09f1lr1g3pz48kshrlic01ba6pasj60q";
10 };
11
12 meta = with lib; {
13 description = "Python wrapper for the portable curve25519-donna implementation";
14 homepage = "http://code.google.com/p/curve25519-donna/";
15 license = licenses.bsd3;
16 maintainers = with maintainers; [ ];
17 };
18}