Unverified Commit 131eb044 authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

python312Packages.recursivenodes: init at 0.3.0 (#403090)

parents 669deec7 8f66f342
Loading
Loading
Loading
Loading
+40 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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 { };