nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 32 lines 697 B view raw
1{ stdenv 2, lib 3, buildPythonPackage 4, fetchPypi 5, jupyter_server 6}: 7 8buildPythonPackage rec { 9 pname = "jupyter-lsp"; 10 version = "1.5.1"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "sha256-dRq9NUE76ZpDMfNZewk0Gtx1VYntMgkawvaG2z1hJn4="; 15 }; 16 17 propagatedBuildInputs = [ 18 jupyter_server 19 ]; 20 # tests require network 21 doCheck = false; 22 pythonImportsCheck = [ "jupyter_lsp" ]; 23 24 meta = with lib; { 25 description = "Multi-Language Server WebSocket proxy for your Jupyter notebook or lab server"; 26 homepage = "https://pypi.org/project/jupyter-lsp"; 27 license = licenses.bsd3; 28 platforms = platforms.all; 29 maintainers = with maintainers; [ doronbehar ]; 30 }; 31} 32