Unverified Commit 63d9179d authored by Moraxyc's avatar Moraxyc
Browse files

python312Packages.python-axolotl-curve25519: refactor

parent 533fffa4
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -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;
  };
}