Files
nixpkgs/pkgs/development/python-modules/gpustat/default.nix
T
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

56 lines
1.0 KiB
Nix

{
lib,
blessed,
buildPythonPackage,
fetchPypi,
mockito,
nvidia-ml-py,
psutil,
pytestCheckHook,
pythonOlder,
pythonRelaxDepsHook,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "gpustat";
version = "1.1.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-wY0+1VGPwWMAxC1pTevHCuuzvlXK6R8dtk1jtfqK+dg=";
};
pythonRelaxDeps = [ "nvidia-ml-py" ];
nativeBuildInputs = [
pythonRelaxDepsHook
setuptools-scm
];
propagatedBuildInputs = [
blessed
nvidia-ml-py
psutil
];
nativeCheckInputs = [
mockito
pytestCheckHook
];
pythonImportsCheck = [ "gpustat" ];
meta = with lib; {
description = "Simple command-line utility for querying and monitoring GPU status";
mainProgram = "gpustat";
homepage = "https://github.com/wookayin/gpustat";
changelog = "https://github.com/wookayin/gpustat/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ billhuang ];
};
}