1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 version = "0.2.4"; 9 format = "setuptools"; 10 pname = "python-lzf"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "1l8m6vzwm1m8hn7ldw8j8r2b6r199k8z3q0wnhdyy4p68hahyhni"; 15 }; 16 17 meta = with lib; { 18 description = "liblzf python bindings"; 19 homepage = "https://github.com/teepark/python-lzf"; 20 license = licenses.mit; 21 platforms = platforms.unix; 22 }; 23}