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