Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 24 lines 644 B view raw
1{ lib, buildPythonPackage, fetchPypi, python-language-server }: 2 3buildPythonPackage rec { 4 pname = "pyls-spyder"; 5 version = "0.3.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "f2be1b05f2c7a72565b28de7289d2c2b16052b88e46914279a2d631e074ed158"; 10 }; 11 12 propagatedBuildInputs = [ python-language-server ]; 13 14 # no tests 15 doCheck = false; 16 pythonImportsCheck = [ "pyls_spyder" ]; 17 18 meta = with lib; { 19 description = "Spyder extensions for the python-language-server"; 20 homepage = "https://github.com/spyder-ide/pyls-spyder"; 21 license = licenses.mit; 22 maintainers = with maintainers; [ SuperSandro2000 ]; 23 }; 24}