aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/HTSeq/default.nix
blob: abb0c8520dd025e4a3ee53644fcabb911250940a (plain)
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.12.4";
  pname = "HTSeq";

  src = fetchPypi {
    inherit pname version;
    sha256 = "e3980bb4f12899442b4fa6f24f0ba149090f71cedb1eaf7128249afe4eb921ff";
  };

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