lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.python-axolotl-curve25519: refactor

+7 -4
+7 -4
pkgs/development/python-modules/python-axolotl-curve25519/default.nix
··· 3 3 buildPythonPackage, 4 4 fetchPypi, 5 5 fetchpatch, 6 + setuptools, 6 7 }: 7 8 8 9 buildPythonPackage rec { 9 10 pname = "python-axolotl-curve25519"; 10 11 version = "0.4.1.post2"; 11 - format = "setuptools"; 12 + pyproject = true; 12 13 13 14 src = fetchPypi { 14 15 inherit pname version; ··· 23 24 }) 24 25 ]; 25 26 26 - meta = with lib; { 27 + build-system = [ setuptools ]; 28 + 29 + meta = { 27 30 homepage = "https://github.com/tgalal/python-axolotl-curve25519"; 28 31 description = "Curve25519 with ed25519 signatures"; 29 - maintainers = with maintainers; [ abbradar ]; 30 - license = licenses.gpl3; 32 + maintainers = with lib.maintainers; [ abbradar ]; 33 + license = lib.licenses.gpl3; 31 34 }; 32 35 }