ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pympler / default.nix
blob6fc917981a7f420cbd529e4a848ee646a3c998c8
1 { lib, stdenv
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "Pympler";
9   version = "1.0.1";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "993f1a3599ca3f4fcd7160c7545ad06310c9e12f70174ae7ae8d4e25f6c5d3fa";
14   };
16   checkInputs = [
17     pytestCheckHook
18   ];
20   disabledTests = [
21     # 'AssertionError: 'function (test.muppy.test_summary.func)' != 'function (muppy.test_summary.func)'
22     # https://github.com/pympler/pympler/issues/134
23     "test_repr_function"
24   ];
26   doCheck = stdenv.hostPlatform.isLinux;
28   meta = with lib; {
29     description = "Tool to measure, monitor and analyze memory behavior";
30     homepage = "https://pythonhosted.org/Pympler/";
31     license = licenses.asl20;
32   };