depot/third_party/nixpkgs/pkgs/development/python-modules/pybigwig/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

33 lines
804 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytest
, numpy
, zlib
}:
buildPythonPackage rec {
pname = "pyBigWig";
version = "0.3.17";
src = fetchPypi {
inherit pname version;
sha256 = "157x6v48y299zm382krf1dw08fdxg95im8lnabhp5vc94s04zxj1";
};
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 ];
};
}