From 9e924beb5697e39bf4b05f550e4960a634c4fcf6 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 15 Oct 2023 10:04:15 +0200 Subject: [PATCH] python310Packages.pybase64: add changelog to meta - add format --- pkgs/development/python-modules/pybase64/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pybase64/default.nix b/pkgs/development/python-modules/pybase64/default.nix index bfc14bd8c597..d94cdf524d20 100644 --- a/pkgs/development/python-modules/pybase64/default.nix +++ b/pkgs/development/python-modules/pybase64/default.nix @@ -8,6 +8,7 @@ buildPythonPackage rec { pname = "pybase64"; version = "1.3.1"; + format = "setuptools"; disabled = pythonOlder "3.6"; @@ -16,13 +17,18 @@ buildPythonPackage rec { hash = "sha256-I0CC/dcDnLdQxkTi03/Ck+c0XqOl8nmrrC9PyWLZuZY="; }; - nativeCheckInputs = [ pytestCheckHook ]; + nativeCheckInputs = [ + pytestCheckHook + ]; - pythonImportsCheck = [ "pybase64" ]; + pythonImportsCheck = [ + "pybase64" + ]; meta = with lib; { description = "Fast Base64 encoding/decoding"; homepage = "https://github.com/mayeut/pybase64"; + changelog = "https://github.com/mayeut/pybase64/releases/tag/v${version}"; license = licenses.bsd2; maintainers = with maintainers; [ ]; };