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

26 lines
726 B
Nix
Raw Normal View History

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