Skip to content

Commit c7b02aa

Browse files
authored
python312Packages.lml: 0.1.0 -> 0.2.0 (NixOS#391946)
2 parents 758af1a + e589a04 commit c7b02aa

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

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

Lines changed: 8 additions & 4 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";
11-
version = "0.1.0";
12-
format = "setuptools";
12+
version = "0.2.0";
13+
pyproject = true;
1314

1415
src = fetchPypi {
1516
inherit pname version;
16-
sha256 = "57a085a29bb7991d70d41c6c3144c560a8e35b4c1030ffb36d85fa058773bcc5";
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)