2018-06-23 14:27:58 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
2018-02-25 17:21:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2018-06-23 14:27:58 +01:00
|
|
|
pname = "python-axolotl-curve25519";
|
2018-02-25 17:21:52 +00:00
|
|
|
version = "0.1";
|
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-02-25 17:21:52 +00:00
|
|
|
sha256 = "1h1rsdr7m8lvgxwrwng7qv0xxmyc9k0q7g9nbcr6ks2ipyjzcnf5";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = https://github.com/tgalal/python-axolotl-curve25519;
|
|
|
|
description = "Curve25519 with ed25519 signatures";
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
license = licenses.gpl3;
|
|
|
|
};
|
|
|
|
}
|