2018-10-17 05:31:08 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "Pympler";
|
2019-11-29 03:44:43 +00:00
|
|
|
version = "0.8";
|
2018-10-17 05:31:08 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-11-29 03:44:43 +00:00
|
|
|
sha256 = "08mrpnb6cv2nvfncvr8a9a8bpwhnasa924anapnjvnaw5jcd4k7p";
|
2018-10-17 05:31:08 +01:00
|
|
|
};
|
|
|
|
|
2018-10-25 21:10:39 +01:00
|
|
|
postPatch = ''
|
|
|
|
rm test/asizeof/test_asizeof.py
|
2018-10-17 05:31:08 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = stdenv.hostPlatform.isLinux;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Tool to measure, monitor and analyze memory behavior";
|
|
|
|
homepage = https://pythonhosted.org/Pympler/;
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|