blob: 310d3ad10164f0adbe47042590964c076b4bebdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
unittestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "kneaddata";
version = "0.12.1";
pyproject = true;
dependencies = [ setuptools ];
src = fetchFromGitHub {
owner = "biobakery";
repo = "kneaddata";
tag = version;
hash = "sha256-biZ6lS0a81CBAAhTOb1Ol38/YagLqXA3AbMr2nBmSEw=";
};
nativeCheckInputs = [ unittestCheckHook ];
unittestFlagsArray = [ "kneaddata/tests/ '*.py'" ];
pythonImportsCheck = [ "kneaddata" ];
meta = {
description = "Quality control tool for metagenomic and metatranscriptomic sequencing data";
homepage = "https://github.com/biobakery/kneaddata";
changelog = "https://github.com/biobakery/kneaddata/releases";
license = lib.licenses.mit;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ pandapip1 ];
mainProgram = "kneaddata";
};
}
|