Unverified Commit 53c7e7e0 authored by Julius Rickert's avatar Julius Rickert
Browse files

asitop: init at 0.0.23

parent d56b8d99
Loading
Loading
Loading
Loading
+32 −0
Original line number Diff line number Diff line
{ lib
, python3
}:

python3.pkgs.buildPythonApplication rec {
  pname = "asitop";
  version = "0.0.23";
  format = "setuptools";

  disabled = python3.pythonOlder "3.7";

  src = python3.pkgs.fetchPypi {
    inherit pname version;
    hash = "sha256-BNncgQRNAd6Pgur5D1xVQi3LSsijSAYIYvhsuiVyi9Q=";
  };

  # has no tests
  doCheck = false;

  propagatedBuildInputs = with python3.pkgs; [
    dashing
    psutil
  ];

  meta = with lib; {
    homepage = "https://github.com/tlkh/asitop";
    description = "Perf monitoring CLI tool for Apple Silicon";
    platforms = platforms.darwin;
    license = licenses.mit;
    maintainers = with maintainers; [ juliusrickert ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -260,6 +260,8 @@ with pkgs;
  alterx = callPackage ../tools/security/alterx { };
  asitop = pkgs.python3Packages.callPackage ../os-specific/darwin/asitop { };
  asn = callPackage ../applications/networking/asn { };
  asnmap = callPackage ../tools/security/asnmap { };