summary refs log tree commit diff
path: root/pkgs/development/python-modules/HTSeq/default.nix
blob: 8158c675898ed66916c5dc1a647f199335b1d165 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi, cython, numpy, pysam, matplotlib
}:
buildPythonPackage rec {
  version = "0.11.4";
  pname = "HTSeq";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1ncn30yvc18aiv1qsa0bvcbjwqy21s0a0kv3v0vghzsn8vbfzq7h";
  };

  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;
  };
}