chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / os-specific / darwin / asitop / default.nix
blob3ac385ec08ffee9de0af1dd4a3c29210fedb3e26
1 { lib
2 , python3
3 , fetchPypi
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "asitop";
8   version = "0.0.24";
9   format = "setuptools";
11   disabled = python3.pythonOlder "3.7";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-Xfe1kwRXKpSPcc+UuHrcYThpqKh6kzWVsbPia/QsPjc=";
16   };
18   # has no tests
19   doCheck = false;
21   propagatedBuildInputs = with python3.pkgs; [
22     dashing
23     psutil
24   ];
26   meta = with lib; {
27     homepage = "https://github.com/tlkh/asitop";
28     description = "Perf monitoring CLI tool for Apple Silicon";
29     platforms = platforms.darwin;
30     license = licenses.mit;
31     maintainers = with maintainers; [ juliusrickert ];
32   };