11 buildPythonPackage rec {
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
19 owner = "liran-funaro";
21 rev = "refs/tags/${version}";
22 hash = "sha256-wy4Tj+Q+4zymRdoN8Z7wcazJTb2lQ+XHY1Kta02R3R0=";
30 nativeCheckInputs = [ pytestCheckHook ];
32 pythonImportsCheck = [ "objsize" ];
34 pytestFlagsArray = [ "test_objsize.py" ];
37 description = "Traversal over objects subtree and calculate the total size";
38 homepage = "https://github.com/liran-funaro/objsize";
39 license = licenses.bsd3;
40 maintainers = with maintainers; [ ocfox ];