summary refs log tree commit diff
path: root/pkgs/by-name/me/memtree/package.nix
blob: 2165b46e2b486bafe90f07278ef522816a17080d (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{ lib
, fetchFromGitHub
, nix-update-script
, python3Packages
}:

python3Packages.buildPythonApplication {
  pname = "memtree";
  version = "unstable-2023-11-04";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "nbraud";
    repo = "memtree";
    rev = "093caeef26ee944b5bf4408710f63494e442b5ff";
    hash = "sha256-j4LqWy7DxeV7pjwnCfpkHwug4p48kux6BM6oDJmvuUo=";
  };

  nativeBuildInputs = with python3Packages; [
    poetry-core
  ];

  propagatedBuildInputs = with python3Packages; [
    rich
  ];

  nativeCheckInputs = with python3Packages; [
    hypothesis
    pytest
  ];

  checkPhase = ''
    runHook preCheck
    python -m pytest -v
    runHook postCheck
  '';

  pythonImportChecks = [ "memtree" ];

  passthru.updateScript = nix-update-script {
    extraArgs = [ "--version=branch" ];
  };

  meta = with lib; {
    description = "Render cgroups tree annotated by memory usage";
    homepage = "https://github.com/nbraud/memtree";
    maintainers = with maintainers; [ nicoo ];
    platforms = platforms.linux;
  };
}