summary refs log tree commit diff
path: root/pkgs/development/python-modules/deeptoolsintervals/default.nix
blob: eef8d51ae9117f680d734d92e1cbc80effc9f616 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, zlib
, lzma
}:

buildPythonPackage rec {
  pname = "deeptoolsintervals";
  version = "0.1.9";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1xnl80nblysj6dylj4683wgrfa425rkx4dp5k65hvwdns9pw753x";
  };

  buildInputs = [ zlib lzma ];

  checkInputs = [ pytest ];

  meta = with lib; {
    homepage = "https://deeptools.readthedocs.io/en/develop";
    description = "Helper library for deeptools";
    license = licenses.mit;
    maintainers = with maintainers; [ scalavision ];
  };
}