Loading pkgs/development/python-modules/biocutils/default.nix 0 → 100644 +48 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook, pytest-cov-stub, setuptools, setuptools-scm, scipy, pandas, numpy, }: buildPythonPackage rec { pname = "biocutils"; version = "0.2.3"; pyproject = true; src = fetchFromGitHub { owner = "BiocPy"; repo = "BiocUtils"; tag = "${version}"; hash = "sha256-4LzXBP/cp+nqIOM5QZIa1QptkSfv3fqdACHEHjJUtsw="; }; build-system = [ setuptools setuptools-scm ]; dependencies = [ numpy ]; nativeCheckInputs = [ pytest-cov-stub pytestCheckHook pandas scipy ]; pythonImportsCheck = [ "biocutils" ]; meta = { description = "Miscellaneous utilities for BiocPy, mostly to mimic base functionality in R"; homepage = "https://github.com/BiocPy/BiocUtils"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ b-rodrigues ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -1911,6 +1911,8 @@ self: super: with self; { binsync = callPackage ../development/python-modules/binsync { }; biocutils = callPackage ../development/python-modules/biocutils { }; biom-format = callPackage ../development/python-modules/biom-format { }; biopandas = callPackage ../development/python-modules/biopandas { }; Loading Loading
pkgs/development/python-modules/biocutils/default.nix 0 → 100644 +48 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook, pytest-cov-stub, setuptools, setuptools-scm, scipy, pandas, numpy, }: buildPythonPackage rec { pname = "biocutils"; version = "0.2.3"; pyproject = true; src = fetchFromGitHub { owner = "BiocPy"; repo = "BiocUtils"; tag = "${version}"; hash = "sha256-4LzXBP/cp+nqIOM5QZIa1QptkSfv3fqdACHEHjJUtsw="; }; build-system = [ setuptools setuptools-scm ]; dependencies = [ numpy ]; nativeCheckInputs = [ pytest-cov-stub pytestCheckHook pandas scipy ]; pythonImportsCheck = [ "biocutils" ]; meta = { description = "Miscellaneous utilities for BiocPy, mostly to mimic base functionality in R"; homepage = "https://github.com/BiocPy/BiocUtils"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ b-rodrigues ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -1911,6 +1911,8 @@ self: super: with self; { binsync = callPackage ../development/python-modules/binsync { }; biocutils = callPackage ../development/python-modules/biocutils { }; biom-format = callPackage ../development/python-modules/biom-format { }; biopandas = callPackage ../development/python-modules/biopandas { }; Loading