python3Packages.cyclebane: init at 24.10.0

This commit is contained in:
Doron Behar
2026-06-23 16:21:03 +03:00
parent b4e8c68cbf
commit ddf2884eb6
2 changed files with 64 additions and 0 deletions
@@ -0,0 +1,62 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
setuptools-scm,
# dependencies
networkx,
# tests
pytestCheckHook,
numpy,
pandas,
scipp,
xarray,
}:
buildPythonPackage (finalAttrs: {
pname = "cyclebane";
version = "24.10.0";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "scipp";
repo = "cyclebane";
tag = finalAttrs.version;
hash = "sha256-vD/Ajym37GdsJ7iMuhao1SgX+Pd7aapc3b2oujwcopk=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
networkx
];
pythonImportsCheck = [
"cyclebane"
];
nativeCheckInputs = [
pytestCheckHook
numpy
pandas
scipp
xarray
];
meta = {
description = "Transform directed acyclic graphs using map-reduce and groupby operations";
homepage = "https://scipp.github.io/cyclebane/";
changelog = "https://github.com/scipp/cyclebane/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ doronbehar ];
};
})
+2
View File
@@ -3506,6 +3506,8 @@ self: super: with self; {
cybox = callPackage ../development/python-modules/cybox { };
cyclebane = callPackage ../development/python-modules/cyclebane { };
cycler = callPackage ../development/python-modules/cycler { };
cyclonedds-python = callPackage ../development/python-modules/cyclonedds-python { };