Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pybigwig / default.nix
blobcb1764b23b04e773b3d15d1aa07249179af11eaf
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytest
5 , numpy
6 , zlib
7 }:
9 buildPythonPackage rec {
10   pname = "pyBigWig";
11   version = "0.3.18";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "4c2a8c571b4100ad7c4c318c142eb48558646be52aaab28215a70426f5be31bc";
16   };
18   buildInputs = [ zlib ];
20   checkInputs = [ numpy pytest ];
22   meta = with lib; {
23     homepage = "https://github.com/deeptools/pyBigWig";
24     description = "File access to bigBed files, and read and write access to bigWig files";
25     longDescription = ''
26       A python extension, written in C, for quick access to bigBed files
27       and access to and creation of bigWig files. This extension uses
28       libBigWig for local and remote file access.
29     '';
30     license = licenses.mit;
31     maintainers = with maintainers; [ scalavision ];
32   };