pg_activity: init at 2.2.0
This commit is contained in:
parent
6fae01f8ed
commit
78ea8a72d4
31
pkgs/development/tools/database/pg_activity/default.nix
Normal file
31
pkgs/development/tools/database/pg_activity/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ python3Packages, fetchFromGitHub, lib }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "pg_activity";
|
||||
version = "2.2.0";
|
||||
disabled = python3Packages.pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dalibo";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "145yqjb2rr1k0xz6lclk4fy5zbwcbfkzvn52g9ijjrfl08y15agm";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
attrs
|
||||
blessed
|
||||
humanize
|
||||
psutil
|
||||
psycopg2
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "pgactivity" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A top like application for PostgreSQL server activity monitoring";
|
||||
homepage = "https://github.com/dalibo/pg_activity";
|
||||
license = licenses.postgresql;
|
||||
maintainers = with maintainers; [ mausch ];
|
||||
};
|
||||
}
|
@ -8025,6 +8025,8 @@ with pkgs;
|
||||
|
||||
peco = callPackage ../tools/text/peco { };
|
||||
|
||||
pg_activity = callPackage ../development/tools/database/pg_activity { };
|
||||
|
||||
pg_checksums = callPackage ../development/tools/database/pg_checksums { };
|
||||
|
||||
pg_flame = callPackage ../tools/misc/pg_flame { };
|
||||
|
Loading…
Reference in New Issue
Block a user