1{ lib 2, buildPythonPackage 3, fetchPypi 4, intervaltree 5}: 6 7buildPythonPackage rec { 8 pname = "ipymarkup"; 9 version = "0.9.0"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit pname version; 14 hash = "sha256-P0v6EP1mKTIBr4SEp+a8tyO/LjPZpqoAiCZxr5yiaRE="; 15 }; 16 17 propagatedBuildInputs = [ intervaltree ]; 18 pythonImportCheck = [ "ipymarkup" ]; 19 20 # Upstream has no tests: 21 doCheck = false; 22 23 meta = with lib; { 24 description = "Collection of NLP visualizations for NER and syntax tree markup"; 25 homepage = "https://github.com/natasha/ipymarkup"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ npatsakula ]; 28 }; 29}