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