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