nixpkgs/pkgs/development/python-modules/HTSeq/default.nix

21 lines
565 B
Nix
Raw Normal View History

2019-10-02 09:24:30 +00:00
{ stdenv, buildPythonPackage, fetchPypi, cython, numpy, pysam, matplotlib
}:
buildPythonPackage rec {
2020-06-06 06:46:55 +00:00
version = "0.12.4";
2019-10-02 09:24:30 +00:00
pname = "HTSeq";
src = fetchPypi {
inherit pname version;
2020-06-06 06:46:55 +00:00
sha256 = "e3980bb4f12899442b4fa6f24f0ba149090f71cedb1eaf7128249afe4eb921ff";
2019-10-02 09:24:30 +00:00
};
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;
};
}