biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / httpstat / default.nix
blob971c973ada21a57ba3760116d247a297e09d181d
1 { lib, fetchFromGitHub, curl, python3Packages, glibcLocales }:
3 python3Packages.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 ];
16   LC_ALL = "en_US.UTF-8";
18   meta = {
19     description = "curl statistics made simple";
20     mainProgram = "httpstat";
21     homepage = "https://github.com/reorx/httpstat";
22     license = lib.licenses.mit;
23     maintainers = with lib.maintainers; [ nequissimus ];
24   };