Unverified Commit 1e463bf3 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

python3Packages.fast-simplification: init at 0.1.11 (#417553)

parents 943c6f32 e6482dae
Loading
Loading
Loading
Loading
+68 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  cython,
  numpy,
  setuptools,
  wheel,
  pytestCheckHook,
  pyvista,
  nix-update-script,
}:

buildPythonPackage rec {
  pname = "fast-simplification";
  version = "0.1.11";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "pyvista";
    repo = "fast-simplification";
    tag = "v${version}";
    hash = "sha256-3mqcFTNrq1W376ctJJumzeQccaB4cvoTNW8BHEnv5t8=";
  };

  build-system = [
    cython
    numpy
    setuptools
    wheel
  ];

  dependencies = [
    numpy
  ];

  nativeCheckInputs = [
    pytestCheckHook
    pyvista
  ];

  disabledTests = [
    # need network to download data
    "test_collapses_louis"
    "test_human"
  ];

  # make sure import the built version, not the source one
  preCheck = ''
    rm -r fast_simplification
  '';

  pythonImportsCheck = [
    "fast_simplification"
  ];

  passthru.updateScript = nix-update-script { };

  meta = {
    description = "Fast Quadratic Mesh Simplification";
    homepage = "https://github.com/pyvista/fast-simplification";
    changelog = "https://github.com/pyvista/fast-simplification/releases/tag/v${version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      yzx9
    ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -4898,6 +4898,8 @@ self: super: with self; {
  fast-histogram = callPackage ../development/python-modules/fast-histogram { };
  fast-simplification = callPackage ../development/python-modules/fast-simplification { };
  fastai = callPackage ../development/python-modules/fastai { };
  fastapi = callPackage ../development/python-modules/fastapi { };