python312Packages.objprint: add changelog to meta

This commit is contained in:
Fabian Affolter 2024-11-09 10:17:21 +01:00 committed by GitHub
parent 5abc7f27a2
commit 972dfa3efa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,21 +18,16 @@ buildPythonPackage rec {
hash = "sha256-+OS034bikrKy4F27b6ic97fHTW6rSMxQ0dx4caF6cUM=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
pythonImportsCheck = [
"objprint"
];
nativeCheckInputs = [ pytestCheckHook ];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "objprint" ];
meta = {
description = "Library that can print Python objects in human readable format";
homepage = "https://github.com/gaogaotiantian/objprint";
changelog = "https://github.com/gaogaotiantian/objprint/releases/tag/${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ drupol ];
};