Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 24.05-beta 37 lines 768 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 deprecated, 6 memestra, 7 python-lsp-server, 8}: 9 10buildPythonPackage rec { 11 pname = "pyls-memestra"; 12 version = "0.0.16"; 13 format = "setuptools"; 14 15 src = fetchPypi { 16 inherit pname version; 17 hash = "sha256-zMVDd2uB4znw38z3yb0Nt7qQH5dGHTbQBIZO/qo1/t8="; 18 }; 19 20 propagatedBuildInputs = [ 21 deprecated 22 memestra 23 python-lsp-server 24 ]; 25 26 # Tests fail because they rely on writting to read-only files 27 doCheck = false; 28 29 pythonImportsCheck = [ "pyls_memestra" ]; 30 31 meta = with lib; { 32 description = "Memestra plugin for the Python Language Server"; 33 homepage = "https://github.com/QuantStack/pyls-memestra"; 34 license = licenses.bsd3; 35 maintainers = with maintainers; [ GaetanLepage ]; 36 }; 37}