Merge pull request #243343 from NetaliDev/dokuwiki-python

This commit is contained in:
Janik 2023-07-25 13:39:40 +02:00 committed by GitHub
commit 79293750c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib
, fetchPypi
, buildPythonPackage
}:
buildPythonPackage rec {
pname = "dokuwiki";
version = "1.3.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-gtTyO6jmjQT0ZwmxvH+RAe1v5aruNStfP1qz1+AqYXs=";
};
pythonImportsCheck = [
"dokuwiki"
];
meta = with lib; {
homepage = "https://github.com/fmenabe/python-dokuwiki";
description = "A python module that aims to manage DokuWiki wikis by using the provided XML-RPC API";
license = licenses.mit;
maintainers = with maintainers; [ netali ];
};
}

View File

@ -3077,6 +3077,8 @@ self: super: with self; {
doit-py = callPackage ../development/python-modules/doit-py { };
dokuwiki = callPackage ../development/python-modules/dokuwiki { };
domeneshop = callPackage ../development/python-modules/domeneshop { };
dominate = callPackage ../development/python-modules/dominate { };