about summary refs log tree commit diff
path: root/pkgs/applications/science/biology
diff options
context:
space:
mode:
authorAleksana <me@aleksana.moe>2024-06-18 13:41:58 +0800
committerGitHub <noreply@github.com>2024-06-18 13:41:58 +0800
commita12b153874647520e447a3d12c96cd9da7bd43ef (patch)
treed92c9a5554bc43d325a6b6f1edb130e4905607e0 /pkgs/applications/science/biology
parent0ab9c9aa877a8f6528b13325a3928d56d0ec98db (diff)
parent8b4e93505239b76c9b6ee478a5924cf4437ee19d (diff)
Merge pull request #316782 from aaronjheng/poretools
poretools: remove
Diffstat (limited to 'pkgs/applications/science/biology')
-rw-r--r--pkgs/applications/science/biology/poretools/default.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/pkgs/applications/science/biology/poretools/default.nix b/pkgs/applications/science/biology/poretools/default.nix
deleted file mode 100644
index 27a1b7ed38416..0000000000000
--- a/pkgs/applications/science/biology/poretools/default.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ lib, python2Packages, fetchFromGitHub }:
-
-python2Packages.buildPythonPackage rec {
-  pname = "poretools";
-  version = "unstable-2016-07-10";
-
-  src = fetchFromGitHub {
-    repo = pname;
-    owner = "arq5x";
-    rev = "e426b1f09e86ac259a00c261c79df91510777407";
-    sha256 = "0bglj833wxpp3cq430p1d3xp085ls221js2y90w7ir2x5ay8l7am";
-  };
-
-  propagatedBuildInputs = [ python2Packages.h5py python2Packages.matplotlib python2Packages.seaborn python2Packages.pandas ];
-
-  meta = {
-    description = "Toolkit for working with nanopore sequencing data from Oxford Nanopore";
-    license = lib.licenses.mit;
-    homepage = "https://poretools.readthedocs.io/en/latest/";
-    maintainers = [ lib.maintainers.rybern ];
-    broken = true; # Build error: h5py-3.9.0 not supported for interpreter python2.7
-  };
-}