nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 39 lines 798 B view raw
1{ 2 lib, 3 fetchFromGitHub, 4 python3, 5}: 6 7python3.pkgs.buildPythonApplication { 8 pname = "subcat"; 9 version = "1.4.0-unstable-2025-05-13"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "duty1g"; 14 repo = "subcat"; 15 rev = "1b3d015b064f244bfbc05114e4d30ab17861fb46"; 16 hash = "sha256-Jft+3ZM9+luvRwO/pL3iTYkz+322TQ/HTD38MttJjQU="; 17 }; 18 19 build-system = with python3.pkgs; [ setuptools ]; 20 21 dependencies = with python3.pkgs; [ 22 pyyaml 23 requests 24 urllib3 25 ]; 26 27 pythonImportsCheck = [ "subcat" ]; 28 29 # Project has no tests 30 doCheck = false; 31 32 meta = { 33 description = "Subdomain discovery tool"; 34 homepage = "https://github.com/duty1g/subcat"; 35 license = lib.licenses.mit; 36 maintainers = with lib.maintainers; [ fab ]; 37 mainProgram = "subcat"; 38 }; 39}