1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 pytest,
6}:
7
8buildPythonPackage rec {
9 pname = "py2bit";
10 version = "0.3.0";
11 format = "setuptools";
12
13 checkInput = [ pytest ];
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "1vw2nvw1yrl7ikkqsqs1pg239yr5nspvd969r1x9arms1k25a1a5";
18 };
19
20 meta = with lib; {
21 homepage = "https://github.com/deeptools/py2bit";
22 description = "File access to 2bit files";
23 longDescription = ''
24 A python extension, written in C, for quick access to 2bit files. The extension uses lib2bit for file access.
25 '';
26 license = licenses.mit;
27 maintainers = with maintainers; [ scalavision ];
28 };
29}