1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "flashtext"; 8 version = "2.7"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "1kq5idfp9skqkjdcld40igxn2yqjly8jpmxawkp0skwxw29jpgm1"; 13 }; 14 15 # json files that tests look for don't exist in the pypi dist 16 doCheck = false; 17 18 meta = with lib; { 19 homepage = "https://github.com/vi3k6i5/flashtext"; 20 description = "Python package to replace keywords in sentences or extract keywords from sentences"; 21 maintainers = with maintainers; [ aanderse ]; 22 license = with licenses; [ mit ]; 23 }; 24}