depot/third_party/nixpkgs/pkgs/development/python-modules/dokuwiki/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

26 lines
573 B
Nix

{ 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 ];
};
}