about summary refs log tree commit diff
path: root/pkgs/development/python-modules/deeptoolsintervals/default.nix
blob: d3003ee0dc2b05965b517c4b777b51334db5ecdc (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
29
30
31
32
33
{
  lib,
  buildPythonPackage,
  fetchPypi,
  pytest,
  zlib,
  xz,
}:

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

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

  buildInputs = [
    zlib
    xz
  ];

  nativeCheckInputs = [ pytest ];

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