HTSeq: init at 0.11.2
This commit is contained in:
parent
554213b526
commit
448bed5653
20
pkgs/development/python-modules/HTSeq/default.nix
Normal file
20
pkgs/development/python-modules/HTSeq/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi, cython, numpy, pysam, matplotlib
|
||||||
|
}:
|
||||||
|
buildPythonPackage rec {
|
||||||
|
version = "0.11.2";
|
||||||
|
pname = "HTSeq";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "65c4c13968506c7df92e97124df96fdd041c4476c12a548d67350ba8b436bcfc";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ cython numpy pysam ];
|
||||||
|
propagatedBuildInputs = [ numpy pysam matplotlib ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A framework to work with high-throughput sequencing data";
|
||||||
|
maintainers = with maintainers; [ unode ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
@ -1698,6 +1698,8 @@ in {
|
|||||||
inherit (pkgs) pkgconfig;
|
inherit (pkgs) pkgconfig;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
HTSeq = callPackage ../development/python-modules/HTSeq { };
|
||||||
|
|
||||||
httpserver = callPackage ../development/python-modules/httpserver {};
|
httpserver = callPackage ../development/python-modules/httpserver {};
|
||||||
|
|
||||||
bleach = callPackage ../development/python-modules/bleach { };
|
bleach = callPackage ../development/python-modules/bleach { };
|
||||||
|
Loading…
Reference in New Issue
Block a user