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