python3Packages.sciline: init at 25.11.1

This commit is contained in:
Doron Behar
2026-06-23 16:21:03 +03:00
parent ddf2884eb6
commit ef2a7804a1
2 changed files with 72 additions and 0 deletions
@@ -0,0 +1,70 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
setuptools-scm,
# dependencies
cyclebane,
# tests
pytestCheckHook,
pytest-randomly,
rich,
dask,
graphviz,
jsonschema,
numpy,
pandas,
pydantic,
}:
buildPythonPackage (finalAttrs: {
pname = "sciline";
version = "25.11.1";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "scipp";
repo = "sciline";
tag = finalAttrs.version;
hash = "sha256-BTdvPAeI7SWV8gNfXVC63YKghZOfJ9eFousOqycpTAw=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
cyclebane
];
nativeCheckInputs = [
pytestCheckHook
pytest-randomly
dask
graphviz
jsonschema
numpy
pandas
pydantic
rich
];
pythonImportsCheck = [
"sciline"
];
meta = {
description = "Build scientific pipelines for your data";
homepage = "https://scipp.github.io/sciline/";
changelog = "https://github.com/scipp/sciline/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ doronbehar ];
};
})
+2
View File
@@ -17768,6 +17768,8 @@ self: super: with self; {
scikits-odes-sundials = callPackage ../development/python-modules/scikits-odes-sundials { };
sciline = callPackage ../development/python-modules/sciline { };
scim2-client = callPackage ../development/python-modules/scim2-client { };
scim2-filter-parser = callPackage ../development/python-modules/scim2-filter-parser { };