python3Packages.cyclebane: init at 24.10.0
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
})
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user