biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / backup / gh2md / default.nix
bloba56bd53c6f4a23824e0f1f7d8e5d1323a7257abc
1 { lib
2 , python3Packages
3 , fetchPypi
4 }:
6 python3Packages.buildPythonApplication rec {
7   pname = "gh2md";
8   version = "2.3.1";
10   src = fetchPypi {
11     inherit pname version;
12     hash = "sha256-B7IB1TWfZ0StH2zo/tXfDAaPlgLvr4ciIv7B8EQyp8w=";
13   };
15   propagatedBuildInputs = with python3Packages; [ six requests python-dateutil ];
17   # uses network
18   doCheck = false;
20   pythonImportsCheck = [ "gh2md" ];
22   meta = with lib; {
23     description = "Export Github repository issues to markdown files";
24     mainProgram = "gh2md";
25     homepage = "https://github.com/mattduck/gh2md";
26     license = licenses.mit;
27     maintainers = with maintainers; [ artturin ];
28   };