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