106 lines
2.0 KiB
Nix
106 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
numpy,
|
|
pillow,
|
|
pyyaml,
|
|
chardet,
|
|
colorlog,
|
|
filelock,
|
|
pandas,
|
|
prettytable,
|
|
py-cpuinfo,
|
|
pydantic,
|
|
requests,
|
|
ruamel-yaml,
|
|
typing-extensions,
|
|
ujson,
|
|
distutils,
|
|
huggingface-hub,
|
|
nix-update-script,
|
|
}:
|
|
|
|
let
|
|
gputil = buildPythonPackage rec {
|
|
pname = "gputil";
|
|
version = "1.4.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "anderskm";
|
|
repo = "gputil";
|
|
tag = "v${version}";
|
|
hash = "sha256-iOyB653BMmDBtK1fM1ZyddjlnaypsuLMOV0sKaBt+yE=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ distutils ];
|
|
|
|
pythonImportsCheck = [ "GPUtil" ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/anderskm/gputil";
|
|
license = lib.licenses.mit;
|
|
description = "Getting GPU status from NVIDA GPUs using nvidia-smi";
|
|
changelog = "https://github.com/anderskm/gputil/releases/tag/${src.tag}";
|
|
};
|
|
};
|
|
in
|
|
buildPythonPackage rec {
|
|
pname = "paddlex";
|
|
version = "3.1.4";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "PaddlePaddle";
|
|
repo = "PaddleX";
|
|
tag = "v${version}";
|
|
hash = "sha256-Oc8fgAv8T/9PjxW8yU31t3m3CUxFuAXdVS71BGhtlJo=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
pythonRelaxDeps = [
|
|
"numpy"
|
|
"pandas"
|
|
];
|
|
|
|
dependencies = [
|
|
chardet
|
|
colorlog
|
|
filelock
|
|
numpy
|
|
pandas
|
|
pillow
|
|
prettytable
|
|
py-cpuinfo
|
|
pydantic
|
|
pyyaml
|
|
requests
|
|
ruamel-yaml
|
|
typing-extensions
|
|
ujson
|
|
gputil
|
|
huggingface-hub
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
homepage = "https://github.com/PaddlePaddle/PaddleX";
|
|
license = lib.licenses.asl20;
|
|
description = "All-in-One Development Tool based on PaddlePaddle";
|
|
changelog = "https://github.com/PaddlePaddle/PaddleX/releases/tag/${src.tag}";
|
|
maintainers = [ ];
|
|
platforms = [
|
|
"x86_64-linux"
|
|
"aarch64-linux"
|
|
"x86_64-darwin"
|
|
"aarch64-darwin"
|
|
];
|
|
};
|
|
}
|