mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
gh2md: init at 2.0.0
useful to backup github issues and PRs
This commit is contained in:
parent
288d13bc7e
commit
26b7980516
2 changed files with 29 additions and 0 deletions
27
pkgs/tools/backup/gh2md/default.nix
Normal file
27
pkgs/tools/backup/gh2md/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ lib
|
||||
, python3Packages
|
||||
}:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "gh2md";
|
||||
version = "2.0.0";
|
||||
|
||||
src = python3Packages.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "7a277939d4781f4ca741eccb74fc70f0aa85811185da52219878129cba7f1d77";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [ six requests python-dateutil ];
|
||||
|
||||
# uses network
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "gh2md" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Export Github repository issues to markdown files";
|
||||
homepage = "https://github.com/mattduck/gh2md";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ artturin ];
|
||||
};
|
||||
}
|
|
@ -3177,6 +3177,8 @@ with pkgs;
|
|||
|
||||
ghidra-bin = callPackage ../tools/security/ghidra { };
|
||||
|
||||
gh2md = callPackage ../tools/backup/gh2md { };
|
||||
|
||||
gif-for-cli = callPackage ../tools/misc/gif-for-cli { };
|
||||
|
||||
giph = callPackage ../applications/video/giph { };
|
||||
|
|
Loading…
Reference in a new issue