poretools: init at 0.6.0
This commit is contained in:
parent
11eece3a2e
commit
a13e4ad1f5
2 changed files with 25 additions and 0 deletions
23
pkgs/applications/science/biology/poretools/default.nix
Executable file
23
pkgs/applications/science/biology/poretools/default.nix
Executable file
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, pythonPackages, fetchFromGitHub }:
|
||||
|
||||
pythonPackages.buildPythonPackage rec {
|
||||
pname = "poretools";
|
||||
version = "0.6.0";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
repo = pname;
|
||||
owner = "arq5x";
|
||||
rev = "e426b1f09e86ac259a00c261c79df91510777407";
|
||||
sha256 = "0bglj833wxpp3cq430p1d3xp085ls221js2y90w7ir2x5ay8l7am";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [pythonPackages.h5py pythonPackages.matplotlib pythonPackages.seaborn pythonPackages.pandas];
|
||||
|
||||
meta = {
|
||||
description = "a toolkit for working with nanopore sequencing data from Oxford Nanopore";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
homepage = http://poretools.readthedocs.io/en/latest/;
|
||||
maintainers = [stdenv.lib.maintainers.rybern];
|
||||
};
|
||||
}
|
|
@ -3827,6 +3827,8 @@ with pkgs;
|
|||
|
||||
popfile = callPackage ../tools/text/popfile { };
|
||||
|
||||
poretools = callPackage ../applications/science/biology/poretools { };
|
||||
|
||||
postscript-lexmark = callPackage ../misc/drivers/postscript-lexmark { };
|
||||
|
||||
povray = callPackage ../tools/graphics/povray { };
|
||||
|
|
Loading…
Reference in a new issue