1{ lib
2, python3Packages
3, fetchPypi
4}:
5
6python3Packages.buildPythonApplication rec {
7 pname = "gh2md";
8 version = "2.0.0";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "7a277939d4781f4ca741eccb74fc70f0aa85811185da52219878129cba7f1d77";
13 };
14
15 propagatedBuildInputs = with python3Packages; [ six requests python-dateutil ];
16
17 # uses network
18 doCheck = false;
19
20 pythonImportsCheck = [ "gh2md" ];
21
22 meta = with lib; {
23 description = "Export Github repository issues to markdown files";
24 homepage = "https://github.com/mattduck/gh2md";
25 license = licenses.mit;
26 maintainers = with maintainers; [ artturin ];
27 };
28}