1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 pytest, 6 zlib, 7 xz, 8}: 9 10buildPythonPackage rec { 11 pname = "deeptoolsintervals"; 12 version = "0.1.9"; 13 format = "setuptools"; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "1xnl80nblysj6dylj4683wgrfa425rkx4dp5k65hvwdns9pw753x"; 18 }; 19 20 buildInputs = [ 21 zlib 22 xz 23 ]; 24 25 nativeCheckInputs = [ pytest ]; 26 27 meta = with lib; { 28 homepage = "https://deeptools.readthedocs.io/en/develop"; 29 description = "Helper library for deeptools"; 30 license = licenses.mit; 31 maintainers = with maintainers; [ scalavision ]; 32 }; 33}