blob: 6e101680fbe2e1f58b7cab42b6a5cc528ff78c28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{
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 = {
homepage = "https://github.com/fmenabe/python-dokuwiki";
description = "Python module that aims to manage DokuWiki wikis by using the provided XML-RPC API";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ netali ];
};
}
|