Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "curve25519-donna"; 9 version = "1.3"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "1w0vkjyh4ki9n98lr2hg09f1lr1g3pz48kshrlic01ba6pasj60q"; 15 }; 16 17 meta = with lib; { 18 description = "Python wrapper for the portable curve25519-donna implementation"; 19 homepage = "http://code.google.com/p/curve25519-donna/"; 20 license = licenses.bsd3; 21 maintainers = [ ]; 22 }; 23}