1{ lib, fetchPypi, buildPythonPackage, lzo, nose }: 2 3buildPythonPackage rec { 4 pname = "python-lzo"; 5 version = "1.14"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "83cbd8ecaae284735250e31d6c0ecc18ac08763fab2a8c910dc5a6910db6250c"; 10 }; 11 12 buildInputs = [ lzo ]; 13 propagatedBuildInputs = [ ]; 14 checkInputs = [ nose ]; 15 16 meta = with lib; { 17 homepage = "https://github.com/jd-boyd/python-lzo"; 18 description = "Python bindings for the LZO data compression library"; 19 license = licenses.gpl2; 20 maintainers = [ maintainers.jbedo ]; 21 }; 22}