summary refs log tree commit diff
path: root/pkgs/development/python-modules/curve25519-donna/default.nix
blob: 789fc7488fa4f32a329ca44cdf567bcfb240e79a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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 ];
  };
}