Skip to content

Commit db6746a

Browse files
authored
python3Packages.mdutils: 1.6.0 -> 1.7.0 (#414723)
2 parents b7dab12 + 8e20e43 commit db6746a

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

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

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,27 @@
33
buildPythonPackage,
44
fetchFromGitHub,
55
unittestCheckHook,
6+
setuptools,
67
}:
7-
88
buildPythonPackage rec {
99
pname = "mdutils";
10-
version = "1.6.0";
11-
format = "setuptools";
10+
version = "1.7.0";
11+
pyproject = true;
1212

1313
src = fetchFromGitHub {
1414
owner = "didix21";
1515
repo = "mdutils";
1616
tag = "v${version}";
17-
hash = "sha256-xF6z63CjL/qSBQsm/fSTQhwpg9yJU4qrY06cjn1PbCk=";
17+
hash = "sha256-3/rqcRdyReQnllgVe0/KzwpcFdgHN0K6afisV4dj+Y8=";
1818
};
1919

20+
build-system = [ setuptools ];
21+
2022
nativeCheckInputs = [ unittestCheckHook ];
2123

2224
pythonImportsCheck = [ "mdutils" ];
2325

24-
meta = with lib; {
26+
meta = {
2527
description = "Set of basic tools that can help to create Markdown files";
2628
longDescription = ''
2729
This Python package contains a set of basic tools that can help to create
@@ -32,7 +34,7 @@ buildPythonPackage rec {
3234
'';
3335
homepage = "https://github.com/didix21/mdutils";
3436
changelog = "https://github.com/didix21/mdutils/releases/tag/v${version}";
35-
license = licenses.mit;
36-
maintainers = with maintainers; [ azahi ];
37+
license = lib.licenses.mit;
38+
maintainers = [ lib.maintainers.azahi ];
3739
};
3840
}

0 commit comments

Comments
 (0)