Merge pull request #243343 from NetaliDev/dokuwiki-python
This commit is contained in:
commit
79293750c9
26
pkgs/development/python-modules/dokuwiki/default.nix
Normal file
26
pkgs/development/python-modules/dokuwiki/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user