11 buildPythonPackage rec {
14 format = "setuptools";
16 disabled = pythonOlder "3.9";
18 src = fetchFromGitHub {
21 rev = "refs/tags/${version}";
22 hash = "sha256-ch9nZrQAnzFQQ62/NF4J51pV4DQAbVq4/f/6LaXf5hM=";
25 buildInputs = [ zlib ];
32 pythonImportsCheck = [ "pyBigWig" ];
34 pytestFlagsArray = [ "pyBigWigTest/test*.py" ];
37 # Test file is donwloaded from GitHub
45 description = "File access to bigBed files, and read and write access to bigWig files";
47 A Python extension, written in C, for quick access to bigBed files
48 and access to and creation of bigWig files. This extension uses
49 libBigWig for local and remote file access.
51 homepage = "https://github.com/deeptools/pyBigWig";
52 changelog = "https://github.com/deeptools/pyBigWig/releases/tag/${version}";
53 license = licenses.mit;
54 maintainers = with maintainers; [ scalavision ];