at master 570 B view raw
1{ 2 lib, 3 fetchPypi, 4 buildPythonPackage, 5}: 6 7buildPythonPackage rec { 8 pname = "dokuwiki"; 9 version = "1.3.3"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit pname version; 14 hash = "sha256-gtTyO6jmjQT0ZwmxvH+RAe1v5aruNStfP1qz1+AqYXs="; 15 }; 16 17 pythonImportsCheck = [ "dokuwiki" ]; 18 19 meta = with lib; { 20 homepage = "https://github.com/fmenabe/python-dokuwiki"; 21 description = "Python module that aims to manage DokuWiki wikis by using the provided XML-RPC API"; 22 license = licenses.mit; 23 maintainers = with maintainers; [ netali ]; 24 }; 25}