python312Packages.coiled: init at 1.79.2

This commit is contained in:
daspk04
2025-02-21 10:53:57 +01:00
committed by Gaetan Lepage
parent a6ea58f22e
commit 213b94958d
2 changed files with 101 additions and 0 deletions
@@ -0,0 +1,99 @@
{
lib,
buildPythonPackage,
fetchPypi,
# build-system
hatchling,
hatch-vcs,
# dependencies
aiohttp,
backoff,
bokeh,
boto3,
click,
dask,
distributed,
fabric,
filelock,
gilknocker,
httpx,
importlib-metadata,
invoke,
ipywidgets,
jmespath,
jsondiff,
paramiko,
pip,
pip-requirements-parser,
prometheus-client,
rich,
toml,
typing-extensions,
wheel,
# tests
versionCheckHook,
}:
buildPythonPackage rec {
pname = "coiled";
version = "1.79.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-PRBmM0YN2MPHRMzDmV9nYhP+Jr0tOxkXgHDnW8pN9ug=";
};
build-system = [
hatchling
hatch-vcs
];
dependencies = [
aiohttp
backoff
bokeh
boto3
click
dask
distributed
fabric
filelock
gilknocker
httpx
importlib-metadata
invoke
ipywidgets
jmespath
jsondiff
paramiko
pip
pip-requirements-parser
prometheus-client
rich
toml
typing-extensions
wheel
];
pythonImportsCheck = [
"coiled"
];
nativeCheckInputs = [
versionCheckHook
];
versionCheckProgramArg = [ "--version" ];
meta = {
description = "Python client for coiled.io dask clusters";
homepage = "https://www.coiled.io/";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ daspk04 ];
mainProgram = "coiled";
};
}
+2
View File
@@ -2524,6 +2524,8 @@ self: super: with self; {
cogapp = callPackage ../development/python-modules/cogapp { };
coiled = callPackage ../development/python-modules/coiled { };
coinmetrics-api-client = callPackage ../development/python-modules/coinmetrics-api-client { };
colanderalchemy = callPackage ../development/python-modules/colanderalchemy { };