Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 20 lines 565 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, cython, numpy, pysam, matplotlib 2}: 3buildPythonPackage rec { 4 version = "0.11.2"; 5 pname = "HTSeq"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "65c4c13968506c7df92e97124df96fdd041c4476c12a548d67350ba8b436bcfc"; 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}