about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pybigwig/default.nix
blob: cb1764b23b04e773b3d15d1aa07249179af11eaf (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
, numpy
, zlib
}:

buildPythonPackage rec {
  pname = "pyBigWig";
  version = "0.3.18";

  src = fetchPypi {
    inherit pname version;
    sha256 = "4c2a8c571b4100ad7c4c318c142eb48558646be52aaab28215a70426f5be31bc";
  };

  buildInputs = [ zlib ];

  checkInputs = [ numpy pytest ];

  meta = with lib; {
    homepage = "https://github.com/deeptools/pyBigWig";
    description = "File access to bigBed files, and read and write access to bigWig files";
    longDescription = ''
      A python extension, written in C, for quick access to bigBed files
      and access to and creation of bigWig files. This extension uses
      libBigWig for local and remote file access.
    '';
    license = licenses.mit;
    maintainers = with maintainers; [ scalavision ];
  };
}