Unverified Commit 8e102496 authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

python3Packages.biocutils: init at 0.2.3 (#442031)

parents 331b2c2c 935c9cc8
Loading
Loading
Loading
Loading
+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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };