pythonPackages.pybigwig: init at 0.3.17
This commit is contained in:
parent
e764c16083
commit
1994ed8c7e
33
pkgs/development/python-modules/pybigwig/default.nix
Normal file
33
pkgs/development/python-modules/pybigwig/default.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{ 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -4447,6 +4447,8 @@ in {
|
|||||||
|
|
||||||
pybfd = callPackage ../development/python-modules/pybfd { };
|
pybfd = callPackage ../development/python-modules/pybfd { };
|
||||||
|
|
||||||
|
pybigwig = callPackage ../development/python-modules/pybigwig { };
|
||||||
|
|
||||||
py2bit = callPackage ../development/python-modules/py2bit { };
|
py2bit = callPackage ../development/python-modules/py2bit { };
|
||||||
|
|
||||||
pyblock = callPackage ../development/python-modules/pyblock { };
|
pyblock = callPackage ../development/python-modules/pyblock { };
|
||||||
|
Loading…
Reference in New Issue
Block a user