python312Packages.recursivenodes: init at 0.3.0 (#403090)

This commit is contained in:
Yohann Boniface
2025-05-04 12:54:01 +02:00
committed by GitHub
2 changed files with 42 additions and 0 deletions
@@ -0,0 +1,40 @@
{
lib,
buildPythonPackage,
fetchFromGitLab,
setuptools,
numpy,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "recursivenodes";
version = "0.3.0";
pyproject = true;
src = fetchFromGitLab {
owner = "tisaac";
repo = "recursivenodes";
tag = "v${version}";
hash = "sha256-RThTrYxM4dvTclUZrnne1q1ij9k6aJEeYKTZaxqzs5g=";
};
build-system = [ setuptools ];
dependencies = [
numpy
];
pythonImportsCheck = [ "recursivenodes" ];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
homepage = "https://tisaac.gitlab.io/recursivenodes/";
downloadPage = "https://gitlab.com/tisaac/recursivenodes";
description = "Recursive, parameter-free, explicitly defined interpolation nodes for simplices";
changelog = "https://gitlab.com/tisaac/recursivenodes/-/releases/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ qbisi ];
};
}
+2
View File
@@ -14896,6 +14896,8 @@ self: super: with self; {
callPackage ../development/python-modules/recursive-pth-loader { }
);
recursivenodes = callPackage ../development/python-modules/recursivenodes { };
red-black-tree-mod = callPackage ../development/python-modules/red-black-tree-mod { };
redbaron = callPackage ../development/python-modules/redbaron { };