1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "bz2file";
8 version = "0.98";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "126s53fkpx04f33a829yqqk8fj4png3qwg4m66cvlmhmwc8zihb4";
13 };
14
15 doCheck = false;
16 # The test module (test_bz2file) is not available
17
18 meta = {
19 description = "Bz2file is a Python library for reading and writing bzip2-compressed files";
20 license = lib.licenses.asl20;
21 maintainers = with lib.maintainers; [ jyp ];
22 };
23}