python312Packages.recursivenodes: init at 0.3.0

This commit is contained in:
qbisi
2025-04-30 23:06:38 +08:00
parent 55e8dc37a3
commit 8f66f34278
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
@@ -14884,6 +14884,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 { };