10 buildPythonPackage rec {
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
19 repo = "python-ed25519";
20 rev = "refs/tags/${version}";
21 hash = "sha256-AwnhB5UGycQliNndbqd0JlI4vKSehCSy0qHv2EiB+jA=";
33 pythonImportsCheck = [ "ed25519" ];
36 description = "Ed25519 public-key signatures";
37 mainProgram = "edsig";
38 homepage = "https://github.com/warner/python-ed25519";
39 changelog = "https://github.com/warner/python-ed25519/blob/${version}/NEWS";
40 license = licenses.mit;
41 maintainers = with maintainers; [ np ];