Unverified Commit b343fdee authored by Patsakula Nikita's avatar Patsakula Nikita
Browse files

python311Packages.ipymarkup: init at 0.9.0

parent ad610766
Loading
Loading
Loading
Loading
+29 −0
Original line number Diff line number Diff line
{ 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 ];
  pythonImportCheck = [ "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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -5292,6 +5292,8 @@ self: super: with self; {

  ipykernel = callPackage ../development/python-modules/ipykernel { };

  ipymarkup = callPackage ../development/python-modules/ipymarkup { };

  ipympl = callPackage ../development/python-modules/ipympl { };

  ipyparallel = callPackage ../development/python-modules/ipyparallel { };