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