about summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorAaron Jheng <wentworth@outlook.com>2024-06-03 10:27:58 +0800
committerAaron Jheng <wentworth@outlook.com>2024-06-11 10:16:51 +0800
commit8b4e93505239b76c9b6ee478a5924cf4437ee19d (patch)
tree2cb36478900f68fe2e7f2e8ef576a996431c2e41 /pkgs/applications/science
parentf0feb1b84c07f00e6f2757b77658720070aac22f (diff)
downloadnixlib-8b4e93505239b76c9b6ee478a5924cf4437ee19d.tar
nixlib-8b4e93505239b76c9b6ee478a5924cf4437ee19d.tar.gz
nixlib-8b4e93505239b76c9b6ee478a5924cf4437ee19d.tar.bz2
nixlib-8b4e93505239b76c9b6ee478a5924cf4437ee19d.tar.lz
nixlib-8b4e93505239b76c9b6ee478a5924cf4437ee19d.tar.xz
nixlib-8b4e93505239b76c9b6ee478a5924cf4437ee19d.tar.zst
nixlib-8b4e93505239b76c9b6ee478a5924cf4437ee19d.zip
poretools: remove
Diffstat (limited to 'pkgs/applications/science')
-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 27a1b7ed3841..000000000000
--- 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
-  };
-}