Skip to content

Commit

Permalink
python312Packages.kneaddata: init at 0.7.7-alpha (#340230)
Browse files Browse the repository at this point in the history
  • Loading branch information
FliegendeWurst authored Dec 14, 2024
2 parents d54f6dc + 7c8e03d commit d63c09d
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
38 changes: 38 additions & 0 deletions pkgs/development/python-modules/kneaddata/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
unittestCheckHook,
setuptools,
}:

buildPythonPackage rec {
pname = "kneaddata";
version = "0.7.7-alpha";
pyproject = true;

dependencies = [ setuptools ];

src = fetchFromGitHub {
owner = "biobakery";
repo = "kneaddata";
rev = "refs/tags/${version}";
hash = "sha256-8pXabwMGNZETEXP0A31SInj37pvogyKpJAaAY7aTyns=";
};

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";
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6989,6 +6989,8 @@ self: super: with self; {

knack = callPackage ../development/python-modules/knack { };

kneaddata = callPackage ../development/python-modules/kneaddata { };

kneed = callPackage ../development/python-modules/kneed { };

knocki = callPackage ../development/python-modules/knocki { };
Expand Down

0 comments on commit d63c09d

Please sign in to comment.