1{ stdenv, buildPythonPackage, fetchPypi, cython, numpy, pysam, matplotlib
2}:
3buildPythonPackage rec {
4 version = "0.12.4";
5 pname = "HTSeq";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "e3980bb4f12899442b4fa6f24f0ba149090f71cedb1eaf7128249afe4eb921ff";
10 };
11
12 buildInputs = [ cython numpy pysam ];
13 propagatedBuildInputs = [ numpy pysam matplotlib ];
14
15 meta = with stdenv.lib; {
16 description = "A framework to work with high-throughput sequencing data";
17 maintainers = with maintainers; [ unode ];
18 platforms = platforms.unix;
19 };
20}