Loading pkgs/development/python-modules/loompy/default.nix 0 → 100644 +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 pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading Loading
pkgs/development/python-modules/loompy/default.nix 0 → 100644 +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
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading