at master 578 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 chmlib, 6}: 7 8buildPythonPackage rec { 9 pname = "pychm"; 10 version = "0.8.6"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "0wpn9ijlsmrpyiwg3drmgz4dms1i1i347adgqw37bkrh3vn6yq16"; 16 }; 17 18 buildInputs = [ chmlib ]; 19 20 pythonImportsCheck = [ "chm" ]; 21 22 meta = with lib; { 23 description = "Library to manipulate Microsoft HTML Help (CHM) files"; 24 homepage = "https://github.com/dottedmag/pychm"; 25 license = licenses.gpl2Plus; 26 maintainers = with maintainers; [ alexshpilkin ]; 27 }; 28}