blob: 18b6a3f584eda501d38e4ca964c70db7989f2b56 (
plain)
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
30
|
{
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 = {
description = "Collection of NLP visualizations for NER and syntax tree markup";
homepage = "https://github.com/natasha/ipymarkup";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ npatsakula ];
};
}
|