lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.biocutils: init at 0.2.3

+50
+48
pkgs/development/python-modules/biocutils/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + pytestCheckHook, 6 + pytest-cov-stub, 7 + setuptools, 8 + setuptools-scm, 9 + scipy, 10 + pandas, 11 + numpy, 12 + }: 13 + 14 + buildPythonPackage rec { 15 + pname = "biocutils"; 16 + version = "0.2.3"; 17 + pyproject = true; 18 + 19 + src = fetchFromGitHub { 20 + owner = "BiocPy"; 21 + repo = "BiocUtils"; 22 + tag = "${version}"; 23 + hash = "sha256-4LzXBP/cp+nqIOM5QZIa1QptkSfv3fqdACHEHjJUtsw="; 24 + }; 25 + 26 + build-system = [ 27 + setuptools 28 + setuptools-scm 29 + ]; 30 + 31 + dependencies = [ numpy ]; 32 + 33 + nativeCheckInputs = [ 34 + pytest-cov-stub 35 + pytestCheckHook 36 + pandas 37 + scipy 38 + ]; 39 + 40 + pythonImportsCheck = [ "biocutils" ]; 41 + 42 + meta = { 43 + description = "Miscellaneous utilities for BiocPy, mostly to mimic base functionality in R"; 44 + homepage = "https://github.com/BiocPy/BiocUtils"; 45 + license = lib.licenses.mit; 46 + maintainers = with lib.maintainers; [ b-rodrigues ]; 47 + }; 48 + }
+2
pkgs/top-level/python-packages.nix
··· 1911 1911 1912 1912 binsync = callPackage ../development/python-modules/binsync { }; 1913 1913 1914 + biocutils = callPackage ../development/python-modules/biocutils { }; 1915 + 1914 1916 biom-format = callPackage ../development/python-modules/biom-format { }; 1915 1917 1916 1918 biopandas = callPackage ../development/python-modules/biopandas { };