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