mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
19 lines
499 B
Nix
19 lines
499 B
Nix
{ stdenv, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "curve25519-donna";
|
|
version = "1.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1w0vkjyh4ki9n98lr2hg09f1lr1g3pz48kshrlic01ba6pasj60q";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Python wrapper for the portable curve25519-donna implementation";
|
|
homepage = "http://code.google.com/p/curve25519-donna/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ elseym ];
|
|
};
|
|
}
|