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