Unverified Commit d6bf01d9 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

python3Packages.loompy: init at 3.0.7 (#344042)

parents 1635eccf 857db009
Loading
Loading
Loading
Loading
+56 −0
Original line number Diff line number Diff line
{
  lib,
  fetchPypi,
  buildPythonPackage,
  h5py,
  numpy,
  scipy,
  numba,
  click,
  numpy-groupies,
  setuptools,
  pytestCheckHook,
}:
let
  finalAttrs = {
    pname = "loompy";
    version = "3.0.7";
    pyproject = true;

    src = fetchPypi {
      inherit (finalAttrs) pname version;
      hash = "sha256-tc33tUc0xr7ToYHRGUevcK8sbg3K3AL9Docd8jL6qPQ=";
    };

    build-system = [ setuptools ];

    dependencies = [
      h5py
      numpy
      scipy
      numba
      click
      numpy-groupies
    ];

    nativeCheckInputs = [ pytestCheckHook ];

    # Deprecated numpy attributes access
    disabledTests = [
      "test_scan_with_default_ordering"
      "test_get"
    ];

    pythonImportsCheck = [ "loompy" ];

    meta = {
      changelog = "https://github.com/linnarsson-lab/loompy/releases";
      description = "Python implementation of the Loom file format";
      homepage = "https://github.com/linnarsson-lab/loompy";
      license = lib.licenses.bsd2;
      maintainers = with lib.maintainers; [ theobori ];
      mainProgram = "loompy";
    };
  };
in
buildPythonPackage finalAttrs
+2 −0
Original line number Diff line number Diff line
@@ -7417,6 +7417,8 @@ self: super: with self; {
  lomond = callPackage ../development/python-modules/lomond { };
  loompy = callPackage ../development/python-modules/loompy { };
  loopy = callPackage ../development/python-modules/loopy { };
  looseversion = callPackage ../development/python-modules/looseversion { };