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