File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed
pkgs/development/python-modules/mdutils Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change 33 buildPythonPackage ,
44 fetchFromGitHub ,
55 unittestCheckHook ,
6+ setuptools ,
67} :
7-
88buildPythonPackage 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}
You can’t perform that action at this time.
0 commit comments