nixpkgs/pkgs/development/python-modules/curve25519-donna/default.nix
Linus Heckemann ec2bee2404 maintainers: remove elseym
Simon passed away in December 2021.

Simon, it was a pleasure to work with you, to learn things together
and to share good times. It ended too soon. You will be missed.
2022-07-04 21:21:38 +02:00

19 lines
482 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "curve25519-donna";
version = "1.3";
src = fetchPypi {
inherit pname version;
sha256 = "1w0vkjyh4ki9n98lr2hg09f1lr1g3pz48kshrlic01ba6pasj60q";
};
meta = with lib; {
description = "Python wrapper for the portable curve25519-donna implementation";
homepage = "http://code.google.com/p/curve25519-donna/";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}