python312Packages.python-axolotl-curve25519: refactor

This commit is contained in:
Moraxyc 2024-11-09 16:09:10 +08:00
parent 533fffa449
commit 63d9179dd4
No known key found for this signature in database

View File

@ -3,12 +3,13 @@
buildPythonPackage,
fetchPypi,
fetchpatch,
setuptools,
}:
buildPythonPackage rec {
pname = "python-axolotl-curve25519";
version = "0.4.1.post2";
format = "setuptools";
pyproject = true;
src = fetchPypi {
inherit pname version;
@ -23,10 +24,12 @@ buildPythonPackage rec {
})
];
meta = with lib; {
build-system = [ setuptools ];
meta = {
homepage = "https://github.com/tgalal/python-axolotl-curve25519";
description = "Curve25519 with ed25519 signatures";
maintainers = with maintainers; [ abbradar ];
license = licenses.gpl3;
maintainers = with lib.maintainers; [ abbradar ];
license = lib.licenses.gpl3;
};
}