2021-01-25 09:26:54 +01:00
|
|
|
{ lib, pythonPackages, fetchFromGitHub }:
|
2017-06-18 17:15:42 +02:00
|
|
|
|
|
|
|
let
|
2019-11-02 20:42:19 +01:00
|
|
|
version = "3.13";
|
2017-06-18 17:15:42 +02:00
|
|
|
pname = "ps_mem";
|
2019-08-13 23:52:01 +02:00
|
|
|
in pythonPackages.buildPythonApplication {
|
2017-06-18 17:15:42 +02:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pixelb";
|
2019-09-09 01:38:31 +02:00
|
|
|
repo = pname;
|
2019-01-11 19:32:41 +01:00
|
|
|
rev = "v${version}";
|
2019-11-02 20:42:19 +01:00
|
|
|
sha256 = "0pgi9hvwfbkzvwicqlkwx4rwal1ikza018yxbwpnf7c80zw0zaw9";
|
2017-06-18 17:15:42 +02:00
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-06-18 17:15:42 +02:00
|
|
|
description = "A utility to accurately report the in core memory usage for a program";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/pixelb/ps_mem";
|
2017-06-18 17:15:42 +02:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = [ maintainers.gnidorah ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|