mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 15:04:44 +00:00
9afbaab23f
Diff: https://github.com/ARPSyndicate/puncia/compare/refs/tags/v0.15-unstable-2024-03-23...v0.24 Changelog: https://github.com/ARPSyndicate/puncia/releases/tag/v0.24
37 lines
857 B
Nix
37 lines
857 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "puncia";
|
|
version = "0.24";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ARPSyndicate";
|
|
repo = "puncia";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-4PJyAYPRsqay5Y9RxhOpUgIJvntVKokqYhE1b+hVc44=";
|
|
};
|
|
|
|
build-system = with python3.pkgs; [ setuptools ];
|
|
|
|
dependencies = with python3.pkgs; [ requests ];
|
|
|
|
# Project has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "puncia" ];
|
|
|
|
meta = with lib; {
|
|
description = "CLI utility for Subdomain Center & Exploit Observer";
|
|
homepage = "https://github.com/ARPSyndicate/puncia";
|
|
changelog = "https://github.com/ARPSyndicate/puncia/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "puncia";
|
|
};
|
|
}
|