pythonPackages.py2bit: init at 0.3.0
This commit is contained in:
parent
018f66f6d8
commit
e764c16083
27
pkgs/development/python-modules/py2bit/default.nix
Normal file
27
pkgs/development/python-modules/py2bit/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pytest
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "py2bit";
|
||||||
|
version = "0.3.0";
|
||||||
|
|
||||||
|
checkInput = [ pytest ];
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1vw2nvw1yrl7ikkqsqs1pg239yr5nspvd969r1x9arms1k25a1a5";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/deeptools/py2bit";
|
||||||
|
description = "File access to 2bit files";
|
||||||
|
longDescription = ''
|
||||||
|
A python extension, written in C, for quick access to 2bit files. The extension uses lib2bit for 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 { };
|
||||||
|
|
||||||
|
py2bit = callPackage ../development/python-modules/py2bit { };
|
||||||
|
|
||||||
pyblock = callPackage ../development/python-modules/pyblock { };
|
pyblock = callPackage ../development/python-modules/pyblock { };
|
||||||
|
|
||||||
pyblosxom = callPackage ../development/python-modules/pyblosxom { };
|
pyblosxom = callPackage ../development/python-modules/pyblosxom { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user