httpx 1.2.4 -> 1.2.6 https://github.com/projectdiscovery/httpx/releases attrpath: httpx Checking auto update branch... No auto update branch exists Old version 1.2.4" not present in master derivation file with contents: { buildGoModule , fetchFromGitHub , lib }: buildGoModule rec { pname = "httpx"; version = "1.2.6"; src = fetchFromGitHub { owner = "projectdiscovery"; repo = "httpx"; rev = "refs/tags/v${version}"; hash = "sha256-XGKz4Y04EpfJGkEfUE20Egv9dFiSEHOpDcQ2OfJ9wu8="; }; vendorHash = "sha256-PsASCNHR52E4TSIK5s0ReJptKcondq39Dn2PsMQ8laA="; # Tests require network access doCheck = false; meta = with lib; { description = "Fast and multi-purpose HTTP toolkit"; longDescription = '' httpx is a fast and multi-purpose HTTP toolkit allow to run multiple probers using retryablehttp library, it is designed to maintain the result reliability with increased threads. ''; homepage = "https://github.com/projectdiscovery/httpx"; changelog = "https://github.com/projectdiscovery/httpx/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }