about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pympler/default.nix
blob: a331f5e11755d4fd1be3276e44227beef135a057 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "Pympler";
  version = "0.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "c262ceca4dac67b8b523956833c52443420eabc3321a07185990b358b8ba13a7";
  };

  postPatch = ''
   rm test/asizeof/test_asizeof.py
  '';

  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;
  };

}