1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "striprtf"; 8 version = "0.0.16"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "690387117f3341354fddd0957913158d1319c207755c0cc54a614f80248887b2"; 13 }; 14 15 meta = with lib; { 16 homepage = "https://github.com/joshy/striprtf"; 17 description = "A simple library to convert rtf to text"; 18 maintainers = with maintainers; [ aanderse ]; 19 license = with licenses; [ bsd3 ]; 20 }; 21}