1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytest 5, numpy 6, zlib 7}: 8 9buildPythonPackage rec { 10 pname = "pyBigWig"; 11 version = "0.3.18"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "4c2a8c571b4100ad7c4c318c142eb48558646be52aaab28215a70426f5be31bc"; 16 }; 17 18 buildInputs = [ zlib ]; 19 20 checkInputs = [ numpy pytest ]; 21 22 meta = with lib; { 23 homepage = "https://github.com/deeptools/pyBigWig"; 24 description = "File access to bigBed files, and read and write access to bigWig files"; 25 longDescription = '' 26 A python extension, written in C, for quick access to bigBed files 27 and access to and creation of bigWig files. This extension uses 28 libBigWig for local and remote file access. 29 ''; 30 license = licenses.mit; 31 maintainers = with maintainers; [ scalavision ]; 32 }; 33}