2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchPypi, buildPythonPackage }:
|
2017-05-31 21:59:52 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "ed25519";
|
2019-10-08 08:15:35 +01:00
|
|
|
version = "1.5";
|
2017-05-31 21:59:52 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-08 08:15:35 +01:00
|
|
|
sha256 = "0n1k83ww0pr4q6z0h7p8hvy21hcgb96jvgllfbwhvvyf37h3w182";
|
2017-05-31 21:59:52 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-05-31 21:59:52 +01:00
|
|
|
description = "Ed25519 public-key signatures";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/warner/python-ed25519";
|
2017-05-31 21:59:52 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ np ];
|
|
|
|
};
|
|
|
|
}
|