python312Packages.lml: 0.1.0 -> 0.2.0 (#391946)

This commit is contained in:
Weijia Wang
2025-03-30 13:09:56 +02:00
committed by GitHub
@@ -4,18 +4,21 @@
fetchPypi,
pytestCheckHook,
mock,
setuptools,
}:
buildPythonPackage rec {
pname = "lml";
version = "0.1.0";
format = "setuptools";
version = "0.2.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
sha256 = "57a085a29bb7991d70d41c6c3144c560a8e35b4c1030ffb36d85fa058773bcc5";
hash = "sha256-jdWvtDZ6WT0c2yFEoFh0zZk49SZr67DJ4UEyAEI8DXQ=";
};
build-system = [ setuptools ];
nativeCheckInputs = [
pytestCheckHook
mock
@@ -25,8 +28,9 @@ buildPythonPackage rec {
doCheck = false;
meta = {
description = "Load me later. A lazy plugin management system for Python";
description = "Plugin management system for Python";
homepage = "http://lml.readthedocs.io/";
changelog = "https://github.com/python-lml/lml/releases/tag/v${version}";
license = lib.licenses.bsd3;
maintainers = [ ];
};