mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-23 21:33:49 +00:00
34 lines
846 B
Nix
34 lines
846 B
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "gitxray";
|
|
version = "1.0.16.4";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kulkansecurity";
|
|
repo = "gitxray";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-rxG/FXIvPPCmV8//Bq3Upu4kNjwVhPVTK4ADp9X3OL0=";
|
|
};
|
|
|
|
build-system = with python3.pkgs; [ setuptools ];
|
|
|
|
dependencies = with python3.pkgs; [ requests ];
|
|
|
|
pythonImportsCheck = [ "gitxray" ];
|
|
|
|
meta = {
|
|
description = "Tool which leverages Public GitHub REST APIs for various tasks";
|
|
homepage = "https://github.com/kulkansecurity/gitxray";
|
|
changelog = "https://github.com/kulkansecurity/gitxray/blob/${src.rev}/CHANGELOG.md";
|
|
license = lib.licenses.agpl3Only;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
mainProgram = "gitxray";
|
|
};
|
|
}
|