1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 setuptools, 6}: 7 8buildPythonPackage rec { 9 pname = "zlib-wrapper"; 10 version = "0.1.3"; 11 pyproject = true; 12 13 src = fetchPypi { 14 pname = "zlib_wrapper"; 15 inherit version; 16 hash = "sha256-Yxqc7fSDdnAPlGLzTbgcEQxiTKJDSJmPgm0eV62JiGQ="; 17 }; 18 19 build-system = [ setuptools ]; 20 21 # Module has no tests 22 doCheck = false; 23 24 pythonImportsCheck = [ "zlib_wrapper" ]; 25 26 meta = { 27 description = "Wrapper around zlib with custom header crc32"; 28 homepage = "https://pypi.org/project/zlib_wrapper/"; 29 license = lib.licenses.bsd3; 30 maintainers = with lib.maintainers; [ fab ]; 31 }; 32}