Unverified Commit d43931f3 authored by TomaSajt's avatar TomaSajt
Browse files

python312Packages.nutils: unbreak by adding missing deps

parent de5c1ae4
Loading
Loading
Loading
Loading
+17 −9
Original line number Diff line number Diff line
@@ -2,11 +2,14 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  numpy,
  treelog,
  stringly,
  flit-core,
  appdirs,
  bottombar,
  numpy,
  nutils-poly,
  psutil,
  stringly,
  treelog,
  pytestCheckHook,
  pythonOlder,
}:
@@ -14,9 +17,9 @@
buildPythonPackage rec {
  pname = "nutils";
  version = "8.7";
  format = "pyproject";
  pyproject = true;

  disabled = pythonOlder "3.7";
  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "evalf";
@@ -25,15 +28,20 @@ buildPythonPackage rec {
    hash = "sha256-wxouS0FXrdIhm6nTVBuzkwHceJnZ7f7k8nMFxFsZchE=";
  };

  nativeBuildInputs = [ flit-core ];
  build-system = [ flit-core ];

  propagatedBuildInputs = [
  dependencies = [
    appdirs
    bottombar
    numpy
    treelog
    nutils-poly
    psutil
    stringly
    bottombar
    treelog
  ];

  pythonRelaxDeps = [ "psutil" ];

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "nutils" ];