Files
2026-06-01 19:40:03 +00:00

50 lines
904 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
filelock,
packaging,
requests,
tqdm,
}:
buildPythonPackage (finalAttrs: {
pname = "modelscope";
version = "1.37.1";
pyproject = true;
src = fetchFromGitHub {
owner = "modelscope";
repo = "modelscope";
tag = "v${finalAttrs.version}";
hash = "sha256-LNg2JtqqID6RKuFi+j29NfOWuNZhkkTIdKmL9bXzAvs=";
};
build-system = [ setuptools ];
dependencies = [
filelock
packaging
requests
setuptools
tqdm
];
doCheck = false; # need network
pythonImportsCheck = [ "modelscope" ];
meta = {
description = "Bring the notion of Model-as-a-Service to life";
homepage = "https://github.com/modelscope/modelscope";
license = lib.licenses.asl20;
mainProgram = "modelscope";
maintainers = with lib.maintainers; [
kyehn
doronbehar
ryan4yin
];
};
})