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