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

21 lines
553 B
Nix
Raw Normal View History

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