summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-axolotl-curve25519/default.nix
blob: e372913af7dfd3344a5b1f7f9ec5f4b626daa179 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "python-axolotl-curve25519";
  version = "0.4.1.post2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0705a66297ebd2f508a60dc94e22881c754301eb81db93963322f6b3bdcb63a3";
  };

  meta = with lib; {
    homepage = https://github.com/tgalal/python-axolotl-curve25519;
    description = "Curve25519 with ed25519 signatures";
    maintainers = with maintainers; [ abbradar ];
    license = licenses.gpl3;
  };
}