Skip to content

Commit e589a04

Browse files
authored
python312Packages.lml: refactor
1 parent 546aaa8 commit e589a04

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

pkgs/development/python-modules/lml/default.nix

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,21 @@
44
fetchPypi,
55
pytestCheckHook,
66
mock,
7+
setuptools,
78
}:
89

910
buildPythonPackage rec {
1011
pname = "lml";
1112
version = "0.2.0";
12-
format = "setuptools";
13+
pyproject = true;
1314

1415
src = fetchPypi {
1516
inherit pname version;
16-
sha256 = "sha256-jdWvtDZ6WT0c2yFEoFh0zZk49SZr67DJ4UEyAEI8DXQ=";
17+
hash = "sha256-jdWvtDZ6WT0c2yFEoFh0zZk49SZr67DJ4UEyAEI8DXQ=";
1718
};
1819

20+
build-system = [ setuptools ];
21+
1922
nativeCheckInputs = [
2023
pytestCheckHook
2124
mock
@@ -25,8 +28,9 @@ buildPythonPackage rec {
2528
doCheck = false;
2629

2730
meta = {
28-
description = "Load me later. A lazy plugin management system for Python";
31+
description = "Plugin management system for Python";
2932
homepage = "http://lml.readthedocs.io/";
33+
changelog = "https://github.com/python-lml/lml/releases/tag/v${version}";
3034
license = lib.licenses.bsd3;
3135
maintainers = [ ];
3236
};

0 commit comments

Comments
 (0)