httpstat: Format with nixfmt

This commit is contained in:
Tim Steinbach 2020-10-08 10:22:38 -04:00
parent e0aa9513d4
commit a5209ce244
No known key found for this signature in database
GPG key ID: 6538CB9266B06F31

View file

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