nixpkgs/pkgs/tools/networking/httpstat/default.nix

25 lines
689 B
Nix
Raw Normal View History

2016-10-17 15:18:38 +01:00
{ stdenv, fetchFromGitHub, curl, pythonPackages, glibcLocales }:
2016-10-08 14:19:07 +01:00
2016-10-17 15:18:38 +01:00
pythonPackages.buildPythonApplication rec {
2016-10-08 14:19:07 +01:00
pname = "httpstat";
2016-10-24 15:13:40 +01:00
version = "1.2.1";
2016-10-08 14:19:07 +01:00
src = fetchFromGitHub {
owner = "reorx";
repo = pname;
2019-09-09 00:38:31 +01:00
rev = version;
2016-10-24 15:13:40 +01:00
sha256 = "1vriibcsq4j1hvm5yigbbmmv21dc40y5c9gvd31dg9qkaz26hml6";
2016-10-08 14:19:07 +01:00
};
2016-10-17 15:18:38 +01:00
doCheck = false; # No tests
buildInputs = [ glibcLocales ];
2016-10-08 14:19:07 +01:00
runtimeDeps = [ curl ];
2016-10-17 15:18:38 +01:00
LC_ALL = "en_US.UTF-8";
2016-10-08 14:19:07 +01:00
meta = {
description = "curl statistics made simple";
homepage = "https://github.com/reorx/httpstat";
2016-10-08 14:19:07 +01:00
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ nequissimus ];
};
}