1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "python-axolotl-curve25519";
5 version = "0.4.1.post2";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0705a66297ebd2f508a60dc94e22881c754301eb81db93963322f6b3bdcb63a3";
10 };
11
12 meta = with lib; {
13 homepage = "https://github.com/tgalal/python-axolotl-curve25519";
14 description = "Curve25519 with ed25519 signatures";
15 maintainers = with maintainers; [ abbradar ];
16 license = licenses.gpl3;
17 };
18}