pythonPackages.ed25519: init at 1.4

This commit is contained in:
Nicolas Pouillard 2016-01-21 22:59:47 +01:00
parent 4429139c72
commit 50cc9421a2
No known key found for this signature in database
GPG Key ID: 10C40A56EADFABBA

View File

@ -25009,4 +25009,21 @@ in modules // {
maintainer = with maintainers; [ np ];
};
};
ed25519 = buildPythonPackage rec {
name = "ed25519-${version}";
version = "1.4";
src = pkgs.fetchurl {
url = "http://pypi.python.org/packages/source/e/ed25519/${name}.tar.gz";
sha256 = "0ahx1nkxa0xis3cw0h5c4fpgv8mq4znkq7kajly33lc3317bk499";
};
meta = {
description = "Ed25519 public-key signatures";
homepage = "https://github.com/warner/python-ed25519";
license = licenses.mit;
maintainers = with maintainers; [ np ];
};
};
}