at 23.11-beta 24 lines 635 B view raw
1{ lib, fetchFromGitHub, curl, python3Packages, glibcLocales }: 2 3python3Packages.buildPythonApplication rec { 4 pname = "httpstat"; 5 version = "1.3.1"; 6 src = fetchFromGitHub { 7 owner = "reorx"; 8 repo = pname; 9 rev = version; 10 sha256 = "sha256-zUdis41sQpJ1E3LdNwaCVj6gexi/Rk21IBUgoFISiDM="; 11 }; 12 doCheck = false; # No tests 13 buildInputs = [ glibcLocales ]; 14 runtimeDeps = [ curl ]; 15 16 LC_ALL = "en_US.UTF-8"; 17 18 meta = { 19 description = "curl statistics made simple"; 20 homepage = "https://github.com/reorx/httpstat"; 21 license = lib.licenses.mit; 22 maintainers = with lib.maintainers; [ nequissimus ]; 23 }; 24}